pub struct Time { /* 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 date 1972-12-31, and an optional timezone offset in minutes.
Implementations§
Source§impl Time
impl Time
pub fn from_be_bytes(bytes: [u8; 18]) -> Self
Sourcepub fn timezone(self) -> Option<DayTimeDuration>
pub fn timezone(self) -> Option<DayTimeDuration>
pub fn timezone_offset(self) -> Option<TimezoneOffset>
pub fn to_be_bytes(self) -> [u8; 18]
Sourcepub fn checked_sub(self, rhs: impl Into<Self>) -> Option<DayTimeDuration>
pub fn checked_sub(self, rhs: impl Into<Self>) -> Option<DayTimeDuration>
Returns None
in case of overflow (FODT0001
).
Sourcepub fn checked_add_day_time_duration(
self,
rhs: impl Into<DayTimeDuration>,
) -> Option<Self>
pub fn checked_add_day_time_duration( self, rhs: impl Into<DayTimeDuration>, ) -> Option<Self>
op:add-dayTimeDuration-to-time
Returns None
in case of overflow (FODT0001
).
Sourcepub fn checked_add_duration(self, rhs: impl Into<Duration>) -> Option<Self>
pub fn checked_add_duration(self, rhs: impl Into<Duration>) -> Option<Self>
op:add-dayTimeDuration-to-time
Returns None
in case of overflow (FODT0001
).
Sourcepub fn checked_sub_day_time_duration(
self,
rhs: impl Into<DayTimeDuration>,
) -> Option<Self>
pub fn checked_sub_day_time_duration( self, rhs: impl Into<DayTimeDuration>, ) -> Option<Self>
op:subtract-dayTimeDuration-from-time
Returns None
in case of overflow (FODT0001
).
Sourcepub fn checked_sub_duration(self, rhs: impl Into<Duration>) -> Option<Self>
pub fn checked_sub_duration(self, rhs: impl Into<Duration>) -> Option<Self>
op:subtract-dayTimeDuration-from-time
Returns None
in case of overflow (FODT0001
).
pub fn adjust(self, timezone_offset: Option<TimezoneOffset>) -> Option<Self>
Sourcepub fn is_identical_with(self, other: Self) -> bool
pub fn is_identical_with(self, other: Self) -> bool
Checks if the two values are identical.
Trait Implementations§
Source§impl PartialOrd for Time
impl PartialOrd for Time
impl Copy for Time
impl Eq for Time
impl StructuralPartialEq for Time
Auto Trait Implementations§
impl Freeze for Time
impl RefUnwindSafe for Time
impl Send for Time
impl Sync for Time
impl Unpin for Time
impl UnwindSafe for Time
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