[][src]Trait edid_rs::Read

pub trait Read {
    fn read(&mut self, buf: &mut [u8]) -> Option<usize>;
}

Trait which all data sources must implement. In a std environment, there is a blanket impl of edid_rs::Read for std::io::Read.

Required methods

fn read(&mut self, buf: &mut [u8]) -> Option<usize>

Loading content...

Implementors

impl<T: Read> Read for T[src]

Loading content...