[][src]Trait wasm_reader_traits::ReaderRead

pub trait ReaderRead {
    type Out;
    type Error;
    fn read<R: Read>(self, reader: R) -> Result<Self::Out, Self::Error>;
}

Associated Types

type Out

type Error

Loading content...

Required methods

fn read<R: Read>(self, reader: R) -> Result<Self::Out, Self::Error>

Loading content...

Implementors

impl<PS, FS, S> ReaderRead for Reader<PS, S, FS> where
    (PS, FS, S): ReaderReadHelper<Out = S>, 
[src]

type Out = S

type Error = <(PS, FS, S) as ReaderReadHelper>::Error

Loading content...