Struct combine::stream::decoder::Decoder [−][src]
pub struct Decoder<S, P, C = Buffer> { /* fields omitted */ }
Expand description
Used together with the decode! macro
Implementations
Constructs a new Decoder with an internal buffer. Allows any AsyncRead/Read instance to
be used when decoding but there may be data left in the internal buffer after decoding
(accessible with Decoder::buffer)
Constructs a new Decoder with an internal buffer. Allows any AsyncRead/Read instance to
be used when decoding but there may be data left in the internal buffer after decoding
(accessible with Decoder::buffer)
Constructs a new Decoder without an internal buffer. Requires the read instance to be
wrapped with combine’s BufReader instance to