pub struct UtcTime {
pub date: u32,
pub time: u32,
pub nanoseconds: Option<u32>,
}Expand description
Absolute Time (UTC) Time (RFC 7826 section 4.4.3).
Fields§
§date: u32YYYYMMDD date.
time: u32HHMMSS time.
nanoseconds: Option<u32>Nanoseconds.
Trait Implementations§
Source§impl Ord for UtcTime
impl Ord for UtcTime
Source§impl PartialOrd for UtcTime
impl PartialOrd for UtcTime
impl Copy for UtcTime
impl Eq for UtcTime
impl StructuralPartialEq for UtcTime
Auto Trait Implementations§
impl Freeze for UtcTime
impl RefUnwindSafe for UtcTime
impl Send for UtcTime
impl Sync for UtcTime
impl Unpin for UtcTime
impl UnwindSafe for UtcTime
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