Struct bytecodec::combinator::Collect [] [src]

pub struct Collect<D, T> { /* fields omitted */ }

Combinator for collecting decoded items.

This is created by calling DecodeExt::collect method.

Note that this is a oneshot decoder (i.e., it decodes only one item).

Trait Implementations

impl<D: Debug, T: Debug> Debug for Collect<D, T>
[src]

[src]

Formats the value using the given formatter. Read more

impl<D: Default, T: Default> Default for Collect<D, T>
[src]

[src]

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

impl<D, T: Default> Decode for Collect<D, T> where
    D: Decode,
    T: Extend<D::Item>, 
[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, T> Send for Collect<D, T> where
    D: Send,
    T: Send

impl<D, T> Sync for Collect<D, T> where
    D: Sync,
    T: Sync