pub trait InodeOps {
// Required methods
fn xattrs(&self) -> Option<&InodeXAttrs>;
fn inline(&self) -> Option<&[u8]>;
fn blocks(&self, blkszbits: u8) -> Range<u64>;
}Expand description
Operations on inode data
Required Methods§
Sourcefn xattrs(&self) -> Option<&InodeXAttrs>
fn xattrs(&self) -> Option<&InodeXAttrs>
Returns the extended attributes section if present