pub struct Minute(/* private fields */);Expand description
An ISO-8601 minute component, for use with ISO calendars.
Must be within inclusive bounds [0, 59].
Implementations§
Trait Implementations§
Source§impl IntoOption<Minute> for Minute
 
impl IntoOption<Minute> for Minute
Source§fn into_option(self) -> Option<Self>
 
fn into_option(self) -> Option<Self>
Return 
self as an Option<T>Source§impl Ord for Minute
 
impl Ord for Minute
Source§impl PartialOrd for Minute
 
impl PartialOrd for Minute
impl Copy for Minute
impl Eq for Minute
impl StructuralPartialEq for Minute
Auto Trait Implementations§
impl Freeze for Minute
impl RefUnwindSafe for Minute
impl Send for Minute
impl Sync for Minute
impl Unpin for Minute
impl UnwindSafe for Minute
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