pub struct StatxTimestamp {
pub seconds: i64,
pub nanoseconds: u32,
}Expand description
Horodatage retourné par statx(2).
Fields§
§seconds: i64Secondes depuis l’epoch Unix.
nanoseconds: u32Nanosecondes (complément, toujours dans [0, 999_999_999]).
Trait Implementations§
Source§impl Clone for StatxTimestamp
impl Clone for StatxTimestamp
Source§fn clone(&self) -> StatxTimestamp
fn clone(&self) -> StatxTimestamp
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 StatxTimestamp
Source§impl Debug for StatxTimestamp
impl Debug for StatxTimestamp
impl Eq for StatxTimestamp
Source§impl PartialEq for StatxTimestamp
impl PartialEq for StatxTimestamp
impl StructuralPartialEq for StatxTimestamp
Auto Trait Implementations§
impl Freeze for StatxTimestamp
impl RefUnwindSafe for StatxTimestamp
impl Send for StatxTimestamp
impl Sync for StatxTimestamp
impl Unpin for StatxTimestamp
impl UnsafeUnpin for StatxTimestamp
impl UnwindSafe for StatxTimestamp
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