Struct libc::stat[][src]

#[repr(C)]
pub struct stat { pub st_dev: dev_t, pub st_ino: ino_t, pub st_mode: u16, pub st_nlink: c_short, pub st_uid: c_short, pub st_gid: c_short, pub st_rdev: dev_t, pub st_size: i64, pub st_atime: time64_t, pub st_mtime: time64_t, pub st_ctime: time64_t, }

Fields

st_dev: dev_tst_ino: ino_tst_mode: u16st_nlink: c_shortst_uid: c_shortst_gid: c_shortst_rdev: dev_tst_size: i64st_atime: time64_tst_mtime: time64_tst_ctime: time64_t

Trait Implementations

impl Clone for stat[src]

impl Copy for stat[src]

Auto Trait Implementations

impl Send for stat

impl Sync for stat

impl Unpin for stat

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.