Trait tendril::tendril::ReadExt

source ·
pub trait ReadExt: Read {
    // Required method
    fn read_to_tendril<A>(
        &mut self,
        buf: &mut Tendril<Bytes, A>
    ) -> Result<usize>
       where A: Atomicity;
}
Expand description

Extension trait for io::Read.

Required Methods§

source

fn read_to_tendril<A>(&mut self, buf: &mut Tendril<Bytes, A>) -> Result<usize>where A: Atomicity,

Implementors§

source§

impl<T> ReadExt for Twhere T: Read,