Struct bytecodec::combinator::CollectN[][src]

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

Combinator for decoding the specified number of items and collecting the result.

This is created by calling DecodeExt::collectn method.

Methods

impl<D, T: Default> CollectN<D, T>
[src]

Returns the number of remaining items expected to be decoded.

Sets the number of remaining items expected to be decoded.

Important traits for &'a mut R

Returns a reference to the inner decoder.

Important traits for &'a mut R

Returns a mutable reference to the inner decoder.

Takes ownership of this instance and returns the inner decoder.

Trait Implementations

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

Formats the value using the given formatter. Read more

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

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

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

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