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]

[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.

[src]

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

[src]

Returns the lower bound of the number of bytes needed to decode the next item. 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