pub struct Time {
pub secs: u32,
pub nsecs: u32,
}
Expand description
The time component in a Stat
struct.
Fields§
§secs: u32
The amount of seconds elapsed since EPOCH
nsecs: u32
The amount of nanoseconds elapsed in the current second, ranging from 0 to 999.999.999 .
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Time
impl<'de> Deserialize<'de> for Time
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<SystemTime> for Time
impl From<SystemTime> for Time
Source§fn from(s: SystemTime) -> Self
fn from(s: SystemTime) -> Self
Converts to this type from the input type.
Source§impl From<Time> for SystemTime
impl From<Time> for SystemTime
Source§impl Ord for Time
impl Ord for Time
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