pub struct NormalizedTime {
pub hour: u8,
pub minute: u8,
pub second: u8,
pub nanosecond: u32,
}Fields§
§hour: u8§minute: u8§second: u8§nanosecond: u32Trait Implementations§
Source§impl Clone for NormalizedTime
impl Clone for NormalizedTime
Source§fn clone(&self) -> NormalizedTime
fn clone(&self) -> NormalizedTime
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for NormalizedTime
impl Debug for NormalizedTime
Source§impl PartialEq for NormalizedTime
impl PartialEq for NormalizedTime
impl Copy for NormalizedTime
impl Eq for NormalizedTime
impl StructuralPartialEq for NormalizedTime
Auto Trait Implementations§
impl Freeze for NormalizedTime
impl RefUnwindSafe for NormalizedTime
impl Send for NormalizedTime
impl Sync for NormalizedTime
impl Unpin for NormalizedTime
impl UnsafeUnpin for NormalizedTime
impl UnwindSafe for NormalizedTime
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