pub struct RegularFileNode {
pub metadata: InodeMetadata,
pub xattrs: Vec<Xattr>,
pub data: FileData,
pub nlink: u32,
}Fields§
§metadata: InodeMetadata§xattrs: Vec<Xattr>§data: FileData§nlink: u32Trait Implementations§
Source§impl Clone for RegularFileNode
impl Clone for RegularFileNode
Source§fn clone(&self) -> RegularFileNode
fn clone(&self) -> RegularFileNode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RegularFileNode
impl RefUnwindSafe for RegularFileNode
impl Send for RegularFileNode
impl Sync for RegularFileNode
impl Unpin for RegularFileNode
impl UnsafeUnpin for RegularFileNode
impl UnwindSafe for RegularFileNode
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