pub struct FatTimestamp {
pub unix_seconds: i64,
pub subsec_nanos: u32,
}Expand description
A decoded FAT timestamp as seconds since the Unix epoch plus a sub-second remainder. The value is wall-clock local time (FAT carries no zone).
Fields§
§unix_seconds: i64Seconds since 1970-01-01 (interpreting the fields as if UTC).
subsec_nanos: u32Sub-second remainder in nanoseconds (from the 10 ms tenths field).
Trait Implementations§
Source§impl Clone for FatTimestamp
impl Clone for FatTimestamp
Source§fn clone(&self) -> FatTimestamp
fn clone(&self) -> FatTimestamp
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FatTimestamp
Source§impl Debug for FatTimestamp
impl Debug for FatTimestamp
impl Eq for FatTimestamp
Source§impl PartialEq for FatTimestamp
impl PartialEq for FatTimestamp
impl StructuralPartialEq for FatTimestamp
Auto Trait Implementations§
impl Freeze for FatTimestamp
impl RefUnwindSafe for FatTimestamp
impl Send for FatTimestamp
impl Sync for FatTimestamp
impl Unpin for FatTimestamp
impl UnsafeUnpin for FatTimestamp
impl UnwindSafe for FatTimestamp
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