[][src]Struct cloudabi::filestat

#[repr(C)]
pub struct filestat {
    pub st_dev: device,
    pub st_ino: inode,
    pub st_filetype: filetype,
    pub st_nlink: linkcount,
    pub st_size: filesize,
    pub st_atim: timestamp,
    pub st_mtim: timestamp,
    pub st_ctim: timestamp,
}

File attributes.

Fields

st_dev: device

Device ID of device containing the file.

st_ino: inode

File serial number.

st_filetype: filetype

File type.

st_nlink: linkcount

Number of hard links to the file.

st_size: filesize

For regular files, the file size in bytes. For symbolic links, the length in bytes of the pathname contained in the symbolic link.

st_atim: timestamp

Last data access timestamp.

st_mtim: timestamp

Last data modification timestamp.

st_ctim: timestamp

Last file status change timestamp.

Trait Implementations

impl Clone for filestat[src]

impl Copy for filestat[src]

Auto Trait Implementations

impl Send for filestat

impl Sync for filestat

impl Unpin for filestat

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.