[][src]Struct polyfuse_sys::kernel::fuse_setattr_in

#[repr(C)]
pub struct fuse_setattr_in {
    pub valid: u32,
    pub padding: u32,
    pub fh: u64,
    pub size: u64,
    pub lock_owner: u64,
    pub atime: u64,
    pub mtime: u64,
    pub ctime: u64,
    pub atimensec: u32,
    pub mtimensec: u32,
    pub ctimensec: u32,
    pub mode: u32,
    pub unused4: u32,
    pub uid: u32,
    pub gid: u32,
    pub unused5: u32,
}

Fields

valid: u32padding: u32fh: u64size: u64lock_owner: u64atime: u64mtime: u64ctime: u64atimensec: u32mtimensec: u32ctimensec: u32mode: u32unused4: u32uid: u32gid: u32unused5: u32

Methods

impl fuse_setattr_in[src]

pub fn fh(&self) -> Option<u64>[src]

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

pub fn lock_owner(&self) -> Option<u64>[src]

pub fn atime(&self) -> Option<(u64, u32, bool)>[src]

pub fn mtime(&self) -> Option<(u64, u32, bool)>[src]

pub fn ctime(&self) -> Option<(u64, u32)>[src]

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

Returns the new file if specified.

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

Returns the new UID if specified.

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

Returns the new GID if specified.

Trait Implementations

impl Debug for fuse_setattr_in[src]

Auto Trait Implementations

Blanket Implementations

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

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