[][src]Trait tendril::ReadExt

pub trait ReadExt: Read {
    pub fn read_to_tendril<A>(
        &mut self,
        buf: &mut Tendril<Bytes, A>
    ) -> Result<usize>
    where
        A: Atomicity
; }

Extension trait for io::Read.

Required methods

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

Loading content...

Implementors

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

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

Read all bytes until EOF.

Loading content...