[][src]Struct nc::stat_t

#[repr(C)]
pub struct stat_t {
    pub st_dev: dev_t,
    pub st_ino: ino_t,
    pub st_mode: mode_t,
    pub st_nlink: nlink_t,
    pub st_uid: uid_t,
    pub st_gid: gid_t,
    pub st_rdev: dev_t,
    pub st_size: off_t,
    pub st_blksize: blksize_t,
    pub st_blocks: blkcnt_t,
    pub st_atime: isize,
    pub st_atime_nsec: usize,
    pub st_mtime: isize,
    pub st_mtime_nsec: usize,
    pub st_ctime: isize,
    pub st_ctime_nsec: usize,
    // some fields omitted
}

Fields

st_dev: dev_tst_ino: ino_tst_mode: mode_tst_nlink: nlink_tst_uid: uid_tst_gid: gid_tst_rdev: dev_tst_size: off_tst_blksize: blksize_tst_blocks: blkcnt_tst_atime: isizest_atime_nsec: usizest_mtime: isizest_mtime_nsec: usizest_ctime: isizest_ctime_nsec: usize

Trait Implementations

impl Debug for stat_t[src]

impl Clone for stat_t[src]

impl Default for stat_t[src]

Auto Trait Implementations

impl Unpin for stat_t

impl Send for stat_t

impl Sync for stat_t

Blanket Implementations

impl<T> From<T> for 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> Into<U> for T where
    U: From<T>, 
[src]

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.

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.