pub struct GMonthDay { /* private fields */ }
Expand description
It encodes the value using a number of seconds from the Gregorian calendar era using a Decimal
,
when combined with the year 1972 and the time 31T00:00:00, and an optional timezone offset in minutes.
Implementations§
Source§impl GMonthDay
impl GMonthDay
pub fn from_be_bytes(bytes: [u8; 18]) -> GMonthDay
pub fn month(&self) -> u8
pub fn day(&self) -> u8
pub fn timezone(&self) -> Option<DayTimeDuration>
pub fn timezone_offset(&self) -> Option<TimezoneOffset>
pub fn adjust( &self, timezone_offset: Option<TimezoneOffset>, ) -> Result<GMonthDay, ThinError>
pub fn to_be_bytes(self) -> [u8; 18]
Sourcepub fn is_identical_with(self, other: GMonthDay) -> bool
pub fn is_identical_with(self, other: GMonthDay) -> bool
Checks if the two values are identical.
Trait Implementations§
Source§impl PartialOrd for GMonthDay
impl PartialOrd for GMonthDay
impl Copy for GMonthDay
impl Eq for GMonthDay
impl StructuralPartialEq for GMonthDay
Auto Trait Implementations§
impl Freeze for GMonthDay
impl RefUnwindSafe for GMonthDay
impl Send for GMonthDay
impl Sync for GMonthDay
impl Unpin for GMonthDay
impl UnwindSafe for GMonthDay
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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