pub struct InodeSnapshot {
pub id: InodeId,
pub metadata: MetadataSnapshot,
pub content: FileContentSnapshot,
}Expand description
Snapshot of a single inode
Fields§
§id: InodeId§metadata: MetadataSnapshot§content: FileContentSnapshotTrait Implementations§
Source§impl Clone for InodeSnapshot
impl Clone for InodeSnapshot
Source§fn clone(&self) -> InodeSnapshot
fn clone(&self) -> InodeSnapshot
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 InodeSnapshot
impl RefUnwindSafe for InodeSnapshot
impl Send for InodeSnapshot
impl Sync for InodeSnapshot
impl Unpin for InodeSnapshot
impl UnsafeUnpin for InodeSnapshot
impl UnwindSafe for InodeSnapshot
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