Thanks to visit codestin.com
Credit goes to docs.rs

ISO9660Reader

Trait ISO9660Reader 

Source
pub trait ISO9660Reader {
    // Required method
    fn read_at(&mut self, buf: &mut [u8], lba: u64) -> Result<usize>;
}
Expand description

A trait for objects which can be read by logical block addresses.

Required Methods§

Source

fn read_at(&mut self, buf: &mut [u8], lba: u64) -> Result<usize>

Read the block(s) at a given LBA (logical block address)

Implementors§