[][src]Struct fuse::NodeAttr

#[repr(transparent)]pub struct NodeAttr(_);

Implementations

impl NodeAttr[src]

pub fn node_id(&self) -> Option<NodeId>[src]

pub fn set_node_id(&mut self, node_id: NodeId)[src]

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

pub fn set_size(&mut self, size: u64)[src]

pub fn blocks(&self) -> u64[src]

pub fn set_blocks(&mut self, blocks: u64)[src]

pub fn atime(&self) -> Duration[src]

pub fn set_atime(&mut self, atime: Duration)[src]

pub fn mtime(&self) -> Duration[src]

pub fn set_mtime(&mut self, mtime: Duration)[src]

pub fn ctime(&self) -> Duration[src]

pub fn set_ctime(&mut self, ctime: Duration)[src]

pub fn mode(&self) -> FileMode[src]

pub fn set_mode(&mut self, mode: FileMode)[src]

pub fn set_user_id(&mut self, user_id: u32)[src]

pub fn set_group_id(&mut self, group_id: u32)[src]

pub fn set_rdev(&mut self, rdev: u32)[src]

pub fn set_blksize(&mut self, blksize: u32)[src]

Trait Implementations

impl Clone for NodeAttr[src]

impl Copy for NodeAttr[src]

impl Debug for NodeAttr[src]

Auto Trait Implementations

impl RefUnwindSafe for NodeAttr

impl Send for NodeAttr

impl Sync for NodeAttr

impl Unpin for NodeAttr

impl UnwindSafe for NodeAttr

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.