#[non_exhaustive]pub enum UnixTimestampPrecision {
Second,
Millisecond,
Microsecond,
Nanosecond,
}
Expand description
The precision of a Unix timestamp.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Second
Seconds since the Unix epoch.
Millisecond
Milliseconds since the Unix epoch.
Microsecond
Microseconds since the Unix epoch.
Nanosecond
Nanoseconds since the Unix epoch.
Trait Implementations§
source§impl Clone for UnixTimestampPrecision
impl Clone for UnixTimestampPrecision
source§fn clone(&self) -> UnixTimestampPrecision
fn clone(&self) -> UnixTimestampPrecision
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for UnixTimestampPrecision
impl Debug for UnixTimestampPrecision
source§impl Default for UnixTimestampPrecision
impl Default for UnixTimestampPrecision
Creates a modifier that indicates the value represents the number of seconds since the Unix epoch.
source§fn default() -> UnixTimestampPrecision
fn default() -> UnixTimestampPrecision
Returns the “default value” for a type. Read more
source§impl From<UnixTimestampPrecision> for UnixTimestampPrecision
impl From<UnixTimestampPrecision> for UnixTimestampPrecision
source§fn from(modifier: UnixTimestampPrecision) -> UnixTimestampPrecision
fn from(modifier: UnixTimestampPrecision) -> UnixTimestampPrecision
Converts to this type from the input type.
source§impl PartialEq for UnixTimestampPrecision
impl PartialEq for UnixTimestampPrecision
source§fn eq(&self, other: &UnixTimestampPrecision) -> bool
fn eq(&self, other: &UnixTimestampPrecision) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for UnixTimestampPrecision
impl Eq for UnixTimestampPrecision
impl StructuralPartialEq for UnixTimestampPrecision
Auto Trait Implementations§
impl Freeze for UnixTimestampPrecision
impl RefUnwindSafe for UnixTimestampPrecision
impl Send for UnixTimestampPrecision
impl Sync for UnixTimestampPrecision
impl Unpin for UnixTimestampPrecision
impl UnwindSafe for UnixTimestampPrecision
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.