pub struct IsoMinute(/* private fields */);
Expand description
An ISO-8601 minute component, for use with ISO calendars.
Must be within inclusive bounds [0, 60]
. The value could be equal to 60 to
denote the end of an hour, with the writing 12:60:00. This example corresponds
to the same time as 13:00:00. This is an extension to ISO 8601.
Implementations§
Trait Implementations§
Source§impl Ord for IsoMinute
impl Ord for IsoMinute
Source§impl PartialOrd for IsoMinute
impl PartialOrd for IsoMinute
impl Copy for IsoMinute
impl Eq for IsoMinute
impl StructuralPartialEq for IsoMinute
Auto Trait Implementations§
impl Freeze for IsoMinute
impl RefUnwindSafe for IsoMinute
impl Send for IsoMinute
impl Sync for IsoMinute
impl Unpin for IsoMinute
impl UnwindSafe for IsoMinute
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