[][src]Struct nc::types::stat_t

#[repr(C)]
pub struct stat_t {
    pub st_dev: usize,
    pub st_ino: usize,
    pub st_nlink: usize,
    pub st_mode: u32,
    pub st_uid: u32,
    pub st_gid: u32,
    pub st_rdev: usize,
    pub st_size: isize,
    pub st_blksize: isize,
    pub st_blocks: isize,
    pub st_atime: usize,
    pub st_atime_nsec: usize,
    pub st_mtime: usize,
    pub st_mtime_nsec: usize,
    pub st_ctime: usize,
    pub st_ctime_nsec: usize,
    // some fields omitted
}

Fields

st_dev: usizest_ino: usizest_nlink: usizest_mode: u32st_uid: u32st_gid: u32st_rdev: usizest_size: isizest_blksize: isizest_blocks: isize

Number 512-byte blocks allocated.

st_atime: usizest_atime_nsec: usizest_mtime: usizest_mtime_nsec: usizest_ctime: usizest_ctime_nsec: usize

Trait Implementations

impl Clone for stat_t[src]

impl Debug for stat_t[src]

impl Default for stat_t[src]

Auto Trait Implementations

impl Send for stat_t

impl Sync for stat_t

impl Unpin for stat_t

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.