Struct bytecodec::combinator::AndThen[][src]

pub struct AndThen<D0, D1, F> { /* fields omitted */ }

Combinator for conditional decoding.

If the first item is successfully decoded, it will start decoding the second item by using the decoder returned by f function.

This is created by calling DecodeExt::and_then method.

Trait Implementations

impl<D0: Debug, D1: Debug, F: Debug> Debug for AndThen<D0, D1, F>
[src]

Formats the value using the given formatter. Read more

impl<D0, D1, F> Decode for AndThen<D0, D1, F> where
    D0: Decode,
    D1: Decode,
    F: Fn(D0::Item) -> D1, 
[src]

The type of items to be decoded.

Consumes the given buffer (a part of a byte sequence), and proceeds the decoding process. Read more

Finishes the current decoding process and returns the decoded item. Read more

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

Returns true if there are no items to be decoded by the decoder at the next invocation of decode method, otherwise false. Read more

Auto Trait Implementations

impl<D0, D1, F> Send for AndThen<D0, D1, F> where
    D0: Send,
    D1: Send,
    F: Send

impl<D0, D1, F> Sync for AndThen<D0, D1, F> where
    D0: Sync,
    D1: Sync,
    F: Sync