pub struct InodeEntry {
pub ino: u64,
pub kind: InodeKind,
pub parent: u64,
pub lookup_count: u64,
}Expand description
Entry in the inode table.
Fields§
§ino: u64Inode number
kind: InodeKindType of inode
parent: u64Parent inode
lookup_count: u64Lookup count (for FUSE reference counting)
Trait Implementations§
Source§impl Clone for InodeEntry
impl Clone for InodeEntry
Source§fn clone(&self) -> InodeEntry
fn clone(&self) -> InodeEntry
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for InodeEntry
impl RefUnwindSafe for InodeEntry
impl Send for InodeEntry
impl Sync for InodeEntry
impl Unpin for InodeEntry
impl UnwindSafe for InodeEntry
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more