Struct bytecodec::combinator::Omit
[−]
[src]
pub struct Omit<D>(_);
Combinator for representing optional decoders.
This is created by calling DecodeExt::omit method.
Trait Implementations
impl<D: Debug> Debug for Omit<D>[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl<D: Decode> Decode for Omit<D>[src]
type Item = Option<D::Item>
The type of items to be decoded.
fn decode(&mut self, buf: &mut DecodeBuf) -> Result<Option<Self::Item>>[src]
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 is_idle(&self) -> bool[src]
Returns true if the decoder does not have an item that being decoded, otherwise false.
fn requiring_bytes_hint(&self) -> Option<u64>[src]
Returns the lower bound of the number of bytes needed to decode the next item. Read more