Struct bytecodec::monolithic::MonolithicDecoder[][src]

pub struct MonolithicDecoder<D: MonolithicDecode> { /* fields omitted */ }

Monolithic decoder that implements Decode trait.

Methods

impl<D: MonolithicDecode> MonolithicDecoder<D>
[src]

Makes a new MonolithicDecoder instance.

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 MonolithicDecoder and returns the inner decoder.

Trait Implementations

impl<D: Debug + MonolithicDecode> Debug for MonolithicDecoder<D> where
    D::Item: Debug
[src]

Formats the value using the given formatter. Read more

impl<D: Default + MonolithicDecode> Default for MonolithicDecoder<D> where
    D::Item: Default
[src]

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

impl<D: MonolithicDecode> Decode for MonolithicDecoder<D>
[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> Send for MonolithicDecoder<D> where
    D: Send,
    <D as MonolithicDecode>::Item: Send

impl<D> Sync for MonolithicDecoder<D> where
    D: Sync,
    <D as MonolithicDecode>::Item: Sync