pub enum UtimeValue {
Now,
Omit,
Time(StatxTimestamp),
}Expand description
Valeur d’horodatage pour utimensat(2).
Variants§
Now
Met l’horodatage à l’heure courante (UTIME_NOW).
Omit
Ne modifie pas cet horodatage (UTIME_OMIT).
Time(StatxTimestamp)
Met l’horodatage à la valeur fournie.
Trait Implementations§
Source§impl Clone for UtimeValue
impl Clone for UtimeValue
Source§fn clone(&self) -> UtimeValue
fn clone(&self) -> UtimeValue
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 UtimeValue
Source§impl Debug for UtimeValue
impl Debug for UtimeValue
impl Eq for UtimeValue
Source§impl PartialEq for UtimeValue
impl PartialEq for UtimeValue
impl StructuralPartialEq for UtimeValue
Auto Trait Implementations§
impl Freeze for UtimeValue
impl RefUnwindSafe for UtimeValue
impl Send for UtimeValue
impl Sync for UtimeValue
impl Unpin for UtimeValue
impl UnsafeUnpin for UtimeValue
impl UnwindSafe for UtimeValue
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