pub struct Inode {
pub number: u64,
pub mode: u32,
pub uid: u32,
pub gid: u32,
pub mtime_ns: u64,
pub ctime_ns: u64,
pub nlink: u32,
pub atime_ns: Option<u64>,
pub xattrs: Vec<XAttr>,
pub content_handle: ContentHandle,
}Expand description
Parsed inode record.
Fields§
§number: u64§mode: u32§uid: u32§gid: u32§mtime_ns: u64§ctime_ns: u64§nlink: u32§atime_ns: Option<u64>§xattrs: Vec<XAttr>§content_handle: ContentHandleImplementations§
Trait Implementations§
impl Eq for Inode
impl StructuralPartialEq for Inode
Auto Trait Implementations§
impl Freeze for Inode
impl RefUnwindSafe for Inode
impl Send for Inode
impl Sync for Inode
impl Unpin for Inode
impl UnsafeUnpin for Inode
impl UnwindSafe for Inode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more