pub struct StatxTimestampRaw {
pub tv_sec: i64,
pub tv_nsec: u32,
/* private fields */
}Expand description
Horodatage brut du kernel (struct statx_timestamp, 16 octets).
Miroir #[repr(C)] écrit par le kernel ; cf. Statx.
Fields§
§tv_sec: i64Secondes depuis l’epoch Unix (tv_sec).
tv_nsec: u32Nanosecondes (tv_nsec, dans [0, 999_999_999]).
Trait Implementations§
Source§impl Clone for StatxTimestampRaw
impl Clone for StatxTimestampRaw
Source§fn clone(&self) -> StatxTimestampRaw
fn clone(&self) -> StatxTimestampRaw
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 StatxTimestampRaw
Source§impl Debug for StatxTimestampRaw
impl Debug for StatxTimestampRaw
Source§impl Default for StatxTimestampRaw
impl Default for StatxTimestampRaw
Source§fn default() -> StatxTimestampRaw
fn default() -> StatxTimestampRaw
Returns the “default value” for a type. Read more
impl Eq for StatxTimestampRaw
Source§impl PartialEq for StatxTimestampRaw
impl PartialEq for StatxTimestampRaw
impl StructuralPartialEq for StatxTimestampRaw
Auto Trait Implementations§
impl Freeze for StatxTimestampRaw
impl RefUnwindSafe for StatxTimestampRaw
impl Send for StatxTimestampRaw
impl Sync for StatxTimestampRaw
impl Unpin for StatxTimestampRaw
impl UnsafeUnpin for StatxTimestampRaw
impl UnwindSafe for StatxTimestampRaw
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