Struct libuv::fs::stat::Stat

source ·
pub struct Stat {
Show 16 fields pub dev: u64, pub mode: u64, pub nlink: u64, pub uid: u64, pub gid: u64, pub rdev: u64, pub ino: u64, pub size: u64, pub blksize: u64, pub blocks: u64, pub flags: u64, pub gen: u64, pub atim: TimeSpec, pub mtim: TimeSpec, pub ctim: TimeSpec, pub birthtim: TimeSpec,
}
Expand description

Portable equivalent of struct stat.

Fields§

§dev: u64§mode: u64§nlink: u64§uid: u64§gid: u64§rdev: u64§ino: u64§size: u64§blksize: u64§blocks: u64§flags: u64§gen: u64§atim: TimeSpec§mtim: TimeSpec§ctim: TimeSpec§birthtim: TimeSpec

Auto Trait Implementations§

§

impl RefUnwindSafe for Stat

§

impl Send for Stat

§

impl Sync for Stat

§

impl Unpin for Stat

§

impl UnwindSafe for Stat

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.