Struct icu_datetime::input::IsoHour
source · pub(crate) struct IsoHour(u8);
Expand description
An ISO-8601 hour component, for use with ISO calendars.
Must be within inclusive bounds [0, 24]
. The value could be equal to 24 to
denote the end of a day, with the writing 24:00:00. It corresponds to the same
time as the next day at 00:00:00.
Tuple Fields§
§0: u8
Implementations§
Trait Implementations§
source§impl Ord for IsoHour
impl Ord for IsoHour
source§impl PartialEq for IsoHour
impl PartialEq for IsoHour
source§impl PartialOrd for IsoHour
impl PartialOrd for IsoHour
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 IsoHour
impl Eq for IsoHour
impl StructuralPartialEq for IsoHour
Auto Trait Implementations§
impl Freeze for IsoHour
impl RefUnwindSafe for IsoHour
impl Send for IsoHour
impl Sync for IsoHour
impl Unpin for IsoHour
impl UnwindSafe for IsoHour
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> 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