pub enum TimeSuffix {
Days,
Seconds,
Ticks,
}Variants§
Trait Implementations§
Source§impl Clone for TimeSuffix
impl Clone for TimeSuffix
Source§fn clone(&self) -> TimeSuffix
fn clone(&self) -> TimeSuffix
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 TimeSuffix
impl Debug for TimeSuffix
Source§impl Display for TimeSuffix
impl Display for TimeSuffix
Source§impl HasMacro for TimeSuffix
impl HasMacro for TimeSuffix
Source§impl Hash for TimeSuffix
impl Hash for TimeSuffix
Source§impl Ord for TimeSuffix
impl Ord for TimeSuffix
Source§fn cmp(&self, other: &TimeSuffix) -> Ordering
fn cmp(&self, other: &TimeSuffix) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for TimeSuffix
impl PartialEq for TimeSuffix
Source§impl PartialOrd for TimeSuffix
impl PartialOrd for TimeSuffix
impl Eq for TimeSuffix
impl StructuralPartialEq for TimeSuffix
Auto Trait Implementations§
impl Freeze for TimeSuffix
impl RefUnwindSafe for TimeSuffix
impl Send for TimeSuffix
impl Sync for TimeSuffix
impl Unpin for TimeSuffix
impl UnwindSafe for TimeSuffix
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<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