pub struct InodeData {
pub bytes: u64,
pub share_count: u64,
}Fields§
§bytes: u64The usual blocks * blocksize of the inode’s storage (as per stat)
This is not the inode count (number of times an inode is used
in the file system), but only the number of times this inode
is seen in the file system tree we’re looking at. This is used
when share_globally is not true.
Implementations§
Auto Trait Implementations§
impl Freeze for InodeData
impl RefUnwindSafe for InodeData
impl Send for InodeData
impl Sync for InodeData
impl Unpin for InodeData
impl UnwindSafe for InodeData
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