Enum fs_set_times::SystemTimeSpec
source · pub enum SystemTimeSpec {
SymbolicNow,
Absolute(SystemTime),
}
Expand description
A value for specifying a time.
Variants§
SymbolicNow
A value which always represents the current time, in symbolic form, so that even as time elapses, it continues to represent the current time.
Absolute(SystemTime)
An absolute time value.
Trait Implementations§
source§impl Debug for SystemTimeSpec
impl Debug for SystemTimeSpec
source§impl From<SystemTime> for SystemTimeSpec
impl From<SystemTime> for SystemTimeSpec
source§fn from(time: SystemTime) -> Self
fn from(time: SystemTime) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SystemTimeSpec
impl RefUnwindSafe for SystemTimeSpec
impl Send for SystemTimeSpec
impl Sync for SystemTimeSpec
impl Unpin for SystemTimeSpec
impl UnwindSafe for SystemTimeSpec
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