#[repr(C)]pub struct StatStruct {Show 22 fields
pub st_dev: i32,
pub st_mode: u16,
pub st_nlink: u16,
pub st_ino: u64,
pub st_uid: u32,
pub st_gid: u32,
pub st_rdev: i32,
pub st_atime: i64,
pub st_atime_nsec: i64,
pub st_mtime: i64,
pub st_mtime_nsec: i64,
pub st_ctime: i64,
pub st_ctime_nsec: i64,
pub st_birthtime: i64,
pub st_birthtime_nsec: i64,
pub st_size: i64,
pub st_blocks: i64,
pub st_blksize: i32,
pub st_flags: u32,
pub st_gen: u32,
pub st_lspare: i32,
pub st_qspare: [i64; 2],
}
Fields§
§st_dev: i32
§st_mode: u16
§st_nlink: u16
§st_ino: u64
§st_uid: u32
§st_gid: u32
§st_rdev: i32
§st_atime: i64
§st_atime_nsec: i64
§st_mtime: i64
§st_mtime_nsec: i64
§st_ctime: i64
§st_ctime_nsec: i64
§st_birthtime: i64
§st_birthtime_nsec: i64
§st_size: i64
§st_blocks: i64
§st_blksize: i32
§st_flags: u32
§st_gen: u32
§st_lspare: i32
§st_qspare: [i64; 2]
Trait Implementations§
Auto Trait Implementations§
impl Freeze for stat
impl RefUnwindSafe for stat
impl Send for stat
impl Sync for stat
impl Unpin for stat
impl UnwindSafe for stat
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,
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