Struct rs9p::fcall::SetAttr[][src]

pub struct SetAttr {
    pub mode: u32,
    pub uid: u32,
    pub gid: u32,
    pub size: u64,
    pub atime: Time,
    pub mtime: Time,
}

Subset of Stat used for Tsetattr

Fields

mode: u32uid: u32gid: u32size: u64atime: Timemtime: Time

Trait Implementations

impl Clone for SetAttr[src]

impl Copy for SetAttr[src]

impl Debug for SetAttr[src]

impl Decodable for SetAttr[src]

impl Encodable for SetAttr[src]

impl Eq for SetAttr[src]

impl Hash for SetAttr[src]

impl Ord for SetAttr[src]

impl PartialEq<SetAttr> for SetAttr[src]

impl PartialOrd<SetAttr> for SetAttr[src]

impl StructuralEq for SetAttr[src]

impl StructuralPartialEq for SetAttr[src]

Auto Trait Implementations

impl RefUnwindSafe for SetAttr

impl Send for SetAttr

impl Sync for SetAttr

impl Unpin for SetAttr

impl UnwindSafe for SetAttr

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> 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.