[][src]Struct libfuse::file::SetAttrs

pub struct SetAttrs<'a> { /* fields omitted */ }

A set of attributes to be set.

Methods

impl<'a> SetAttrs<'a>[src]

pub fn mode(&self) -> Option<mode_t>[src]

Returns the file mode if specified.

pub fn uid(&self) -> Option<uid_t>[src]

Returns the UID if specified.

pub fn gid(&self) -> Option<gid_t>[src]

Returns the GID if specified.

pub fn size(&self) -> Option<i64>[src]

Returns the file size if specified.

pub fn atime(&self) -> Option<timespec>[src]

Returns the access time if specified.

pub fn mtime(&self) -> Option<timespec>[src]

Returns the modification time if specified.

pub fn ctime(&self) -> Option<timespec>[src]

Returns the creation time if specified.

Auto Trait Implementations

impl<'a> Unpin for SetAttrs<'a>

impl<'a> Sync for SetAttrs<'a>

impl<'a> Send for SetAttrs<'a>

impl<'a> UnwindSafe for SetAttrs<'a>

impl<'a> RefUnwindSafe for SetAttrs<'a>

Blanket Implementations

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.

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]