Struct icu_calendar::types::IsoMinute
source · pub struct IsoMinute(u8);
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.
Tuple Fields§
§0: u8
Implementations§
Trait Implementations§
source§impl Ord for IsoMinute
impl Ord for IsoMinute
source§impl PartialEq for IsoMinute
impl PartialEq for IsoMinute
source§impl PartialOrd for IsoMinute
impl PartialOrd for IsoMinute
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl 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