pub enum LogicalTimestampUnit {
Millis,
Micros,
Nanos,
}Expand description
Units for logical timestamps recorded in the table metadata.
Variants§
Millis
Millisecond precision timestamps.
Micros
Microsecond precision timestamps.
Nanos
Nanosecond precision timestamps.
Trait Implementations§
Source§impl Clone for LogicalTimestampUnit
impl Clone for LogicalTimestampUnit
Source§fn clone(&self) -> LogicalTimestampUnit
fn clone(&self) -> LogicalTimestampUnit
Returns a duplicate 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 LogicalTimestampUnit
impl Debug for LogicalTimestampUnit
Source§impl<'de> Deserialize<'de> for LogicalTimestampUnit
impl<'de> Deserialize<'de> for LogicalTimestampUnit
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for LogicalTimestampUnit
impl Display for LogicalTimestampUnit
Source§impl PartialEq for LogicalTimestampUnit
impl PartialEq for LogicalTimestampUnit
Source§impl Serialize for LogicalTimestampUnit
impl Serialize for LogicalTimestampUnit
impl Copy for LogicalTimestampUnit
impl Eq for LogicalTimestampUnit
impl StructuralPartialEq for LogicalTimestampUnit
Auto Trait Implementations§
impl Freeze for LogicalTimestampUnit
impl RefUnwindSafe for LogicalTimestampUnit
impl Send for LogicalTimestampUnit
impl Sync for LogicalTimestampUnit
impl Unpin for LogicalTimestampUnit
impl UnsafeUnpin for LogicalTimestampUnit
impl UnwindSafe for LogicalTimestampUnit
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: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more