[][src]Struct nine::p2000::Stat

pub struct Stat {
    pub type_: u16,
    pub dev: u32,
    pub qid: Qid,
    pub mode: FileMode,
    pub atime: u32,
    pub mtime: u32,
    pub length: u64,
    pub name: CowStr,
    pub uid: CowStr,
    pub gid: CowStr,
    pub muid: CowStr,
}

Fields

type_: u16dev: u32qid: Qidmode: FileModeatime: u32mtime: u32length: u64name: CowStruid: CowStrgid: CowStrmuid: CowStr

Methods

impl Stat[src]

pub fn readable_for(&self, user: &str) -> bool[src]

Whether or not the stat says it is readable for the given user, explicitly or by extension (groups, others).

pub fn writable_for(&self, user: &str) -> bool[src]

Whether or not the stat says it is writable for the given user, explicitly or by extension (groups, others).

Trait Implementations

impl Clone for Stat[src]

impl Eq for Stat[src]

impl PartialEq<Stat> for Stat[src]

impl Debug for Stat[src]

impl StructuralPartialEq for Stat[src]

impl StructuralEq for Stat[src]

impl Serialize for Stat[src]

impl<'de> Deserialize<'de> for Stat[src]

Auto Trait Implementations

impl Send for Stat

impl Sync for Stat

impl Unpin for Stat

impl UnwindSafe for Stat

impl RefUnwindSafe for Stat

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]