pub struct Time {
days: i32,
hours: u8,
minutes: u8,
seconds: u8,
}
Fields§
§days: i32
§hours: u8
§minutes: u8
§seconds: u8
Implementations§
Source§impl Time
impl Time
pub fn try_new( days: i32, hours: u8, minutes: u8, seconds: u8, ) -> Result<Self, ()>
pub fn checked_add(&self, interval: &Interval) -> Option<Self>
pub fn checked_sub(&self, interval: &Interval) -> Option<Self>
pub fn display_short(&self) -> TimeShortView<'_>
pub fn display_long(&self) -> TimeLongView<'_>
Trait Implementations§
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