Struct stat

struct stat { ... }

Fields

st_dev: u64
st_ino: u64
st_nlink: u64
st_mode: u32
st_uid: u32
st_gid: u32
__pad0: c_int
st_rdev: u64
st_size: i64
st_blksize: i64
st_blocks: i64
st_atime: i64
st_atime_nsec: c_long
st_mtime: i64
st_mtime_nsec: c_long
st_ctime: i64
st_ctime_nsec: c_long
__unused: [c_long; 3]

Implementations

impl Clone for stat

fn clone(self: &Self) -> stat

impl Freeze for stat

impl RefUnwindSafe for stat

impl Send for stat

impl Sync for stat

impl Unpin for stat

impl UnsafeUnpin for stat

impl UnwindSafe for stat

impl<T> Any for stat

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for stat

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for stat

fn borrow_mut(self: &mut Self) -> &mut T

impl<T> CloneToUninit for stat

unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)

impl<T> From for stat

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> ToOwned for stat

fn to_owned(self: &Self) -> T
fn clone_into(self: &Self, target: &mut T)

impl<T, U> Into for stat

fn into(self: Self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom for stat

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto for stat

fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>