[−][src]Struct fuser::FileAttr
File attributes
Fields
ino: u64Inode number
size: u64Size in bytes
blocks: u64Size in blocks
atime: SystemTimeTime of last access
mtime: SystemTimeTime of last modification
ctime: SystemTimeTime of last change
crtime: SystemTimeTime of creation (macOS only)
kind: FileTypeKind of file (directory, file, pipe, etc)
perm: u16Permissions
nlink: u32Number of hard links
uid: u32User id
gid: u32Group id
rdev: u32Rdev
blksize: u32Block size
padding: u32Padding
flags: u32Flags (macOS only, see chflags(2))
Trait Implementations
impl Clone for FileAttr[src]
impl Copy for FileAttr[src]
impl Debug for FileAttr[src]
impl Eq for FileAttr[src]
impl PartialEq<FileAttr> for FileAttr[src]
impl StructuralEq for FileAttr[src]
impl StructuralPartialEq for FileAttr[src]
Auto Trait Implementations
impl RefUnwindSafe for FileAttr[src]
impl Send for FileAttr[src]
impl Sync for FileAttr[src]
impl Unpin for FileAttr[src]
impl UnwindSafe for FileAttr[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,