pub trait Ext4Read {
// Required method
fn read(
&mut self,
start_byte: u64,
dst: &mut [u8],
) -> Result<(), Box<dyn IoError>>;
}Expand description
Interface used by Ext4 to read the filesystem data from a storage
file or device.