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§
source§impl IsoMinute
impl IsoMinute
sourcepub fn try_add(self, other: u8) -> Option<IsoMinute>
pub fn try_add(self, other: u8) -> Option<IsoMinute>
Attempts to add two values.
Returns Some
if the sum is within bounds.
Returns None
if the sum is out of bounds.
Trait Implementations§
source§impl<C, A, Z> GetField<IsoMinute> for CustomZonedDateTime<A, Z>where
C: Calendar,
A: AsCalendar<Calendar = C>,
impl<C, A, Z> GetField<IsoMinute> for CustomZonedDateTime<A, Z>where
C: Calendar,
A: AsCalendar<Calendar = C>,
source§impl<C, A> GetField<IsoMinute> for DateTime<A>where
C: Calendar,
A: AsCalendar<Calendar = C>,
impl<C, A> GetField<IsoMinute> for DateTime<A>where
C: Calendar,
A: AsCalendar<Calendar = C>,
source§impl IntoOption<IsoMinute> for IsoMinute
impl IntoOption<IsoMinute> for IsoMinute
source§fn into_option(self) -> Option<IsoMinute>
fn into_option(self) -> Option<IsoMinute>
Return
self
as an Option<T>
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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