Struct wasi_common::file::Filestat[][src]

pub struct Filestat {
    pub device_id: u64,
    pub inode: u64,
    pub filetype: FileType,
    pub nlink: u64,
    pub size: u64,
    pub atim: Option<SystemTime>,
    pub mtim: Option<SystemTime>,
    pub ctim: Option<SystemTime>,
}

Fields

device_id: u64inode: u64filetype: FileTypenlink: u64size: u64atim: Option<SystemTime>mtim: Option<SystemTime>ctim: Option<SystemTime>

Trait Implementations

impl Clone for Filestat[src]

impl Debug for Filestat[src]

impl Eq for Filestat[src]

impl From<Filestat> for Filestat[src]

impl PartialEq<Filestat> for Filestat[src]

impl StructuralEq for Filestat[src]

impl StructuralPartialEq for Filestat[src]

Auto Trait Implementations

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> Instrument for T[src]

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

impl<T> Pointee for T[src]

type Pointer = u32

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,