Struct httpcodec::ResponseDecoder
[−]
[src]
pub struct ResponseDecoder<D>(_);
HTTP response decoder.
Methods
impl<D: BodyDecode> ResponseDecoder<D>[src]
pub fn new(body_decoder: D) -> Self[src]
Make a new ResponseDecoder instance.
pub fn with_options(body_decoder: D, options: DecodeOptions) -> Self[src]
Make a new ResponseDecoder instance with the given options.
Trait Implementations
impl<D: Debug> Debug for ResponseDecoder<D>[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl<D: BodyDecode> Decode for ResponseDecoder<D>[src]
type Item = Response<D::Item>
The type of items to be decoded.
fn decode(
&mut self,
buf: &[u8],
eos: Eos
) -> Result<(usize, Option<Self::Item>)>[src]
&mut self,
buf: &[u8],
eos: Eos
) -> Result<(usize, Option<Self::Item>)>
Consumes the given buffer (a part of a byte sequence), and decodes an item from it. Read more
fn has_terminated(&self) -> bool[src]
Returns true if the decoder cannot decode items anymore, otherwise false. Read more
fn requiring_bytes(&self) -> ByteCount[src]
Returns the lower bound of the number of bytes needed to decode the next item. Read more
impl<D: Default + BodyDecode> Default for ResponseDecoder<D>[src]
Auto Trait Implementations
impl<D> Send for ResponseDecoder<D> where
D: Send,
D: Send,
impl<D> Sync for ResponseDecoder<D> where
D: Sync,
D: Sync,