pub struct StartTime(/* private fields */);Expand description
When a process started, in whatever units its platform reports.
Deliberately opaque, and compared only for equality: it exists to distinguish a process from a later one that inherited its PID, and normalizing it to a wall-clock time would cost precision on every platform for no gain. Linux reports clock ticks since boot, the BSDs and macOS a microsecond timestamp, and Windows 100-nanosecond intervals since 1601.
Trait Implementations§
impl Copy for StartTime
Source§impl<'de> Deserialize<'de> for StartTime
impl<'de> Deserialize<'de> for StartTime
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
impl Eq for StartTime
impl StructuralPartialEq for StartTime
Auto Trait Implementations§
impl Freeze for StartTime
impl RefUnwindSafe for StartTime
impl Send for StartTime
impl Sync for StartTime
impl Unpin for StartTime
impl UnsafeUnpin for StartTime
impl UnwindSafe for StartTime
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more