[][src]Struct syscall::data::Stat

#[repr(C)]
pub struct Stat { pub st_dev: u64, pub st_ino: u64, pub st_mode: u16, pub st_nlink: u32, pub st_uid: u32, pub st_gid: u32, pub st_size: u64, pub st_blksize: u32, pub st_blocks: u64, pub st_mtime: u64, pub st_mtime_nsec: u32, pub st_atime: u64, pub st_atime_nsec: u32, pub st_ctime: u64, pub st_ctime_nsec: u32, }

Fields

st_dev: u64st_ino: u64st_mode: u16st_nlink: u32st_uid: u32st_gid: u32st_size: u64st_blksize: u32st_blocks: u64st_mtime: u64st_mtime_nsec: u32st_atime: u64st_atime_nsec: u32st_ctime: u64st_ctime_nsec: u32

Trait Implementations

impl Copy for Stat
[src]

impl Clone for Stat
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Stat
[src]

impl Deref for Stat
[src]

type Target = [u8]

The resulting type after dereferencing.

impl DerefMut for Stat
[src]

impl Default for Stat
[src]

Auto Trait Implementations

impl Send for Stat

impl Sync for Stat

Blanket Implementations

impl<T> From for T
[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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