Trait fast_io::IOExt [] [src]

pub trait IOExt: Read + Write {
    fn write_copy<T: Copy>(&mut self, t: &T) -> Result<()> { ... }
fn read_copy<T: Copy>(&mut self) -> Result<T> { ... }
fn write_str(&mut self, s: &str) -> Result<()> { ... }
fn read_str(&mut self) -> Result<String> { ... }
fn write_slice<T: Copy>(&mut self, ts: &[T]) -> Result<()> { ... }
fn read_slice<T: Copy>(&mut self) -> Result<Vec<T>> { ... } }

Provided Methods

Implementors