iso9660_simple 0.2.5

ISO9660 reading library
Documentation
1
2
3
4
/// Implement reading functionality from ANYTHING by implementing this trait.
pub trait Read {
    fn read(&mut self, position: usize, buffer: &mut [u8]) -> Option<()>;
}