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]

[src]

Formats the value using the given formatter. Read more

impl<D: Default> Default for Omit<D>
[src]

[src]

Returns the "default value" for a type. Read more

impl<D: Decode> Decode for Omit<D>
[src]

The type of items to be decoded.

[src]

Consumes the given buffer (a part of a byte sequence), and decodes an item from it. Read more

[src]

Returns true if the decoder cannot decode items anymore, otherwise false. Read more

[src]

Returns the lower bound of the number of bytes needed to decode the next item. Read more

Auto Trait Implementations

impl<D> Send for Omit<D> where
    D: Send

impl<D> Sync for Omit<D> where
    D: Sync