pub enum TimeInterval {
Days(NonZeroU32),
}Variants§
Days(NonZeroU32)
Trait Implementations§
Source§impl Clone for TimeInterval
impl Clone for TimeInterval
Source§fn clone(&self) -> TimeInterval
fn clone(&self) -> TimeInterval
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 TimeInterval
impl Debug for TimeInterval
Source§impl From<TimeInterval> for Duration
impl From<TimeInterval> for Duration
Source§fn from(from: TimeInterval) -> Self
fn from(from: TimeInterval) -> Self
Converts to this type from the input type.
Source§impl From<TimeInterval> for Interval
impl From<TimeInterval> for Interval
Source§fn from(from: TimeInterval) -> Self
fn from(from: TimeInterval) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TimeInterval
impl PartialEq for TimeInterval
impl Copy for TimeInterval
impl Eq for TimeInterval
impl StructuralPartialEq for TimeInterval
Auto Trait Implementations§
impl Freeze for TimeInterval
impl RefUnwindSafe for TimeInterval
impl Send for TimeInterval
impl Sync for TimeInterval
impl Unpin for TimeInterval
impl UnwindSafe for TimeInterval
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