Struct bytecodec::combinator::MaxBytes[][src]

pub struct MaxBytes<C> { /* fields omitted */ }

Combinator that will fail if the number of consumed bytes exceeds the specified size.

This is created by calling {DecodeExt, EncodeExt}::max_bytes method.

Note that MaxBytes assumes the inner decoder will consume all the bytes in the target stream.

Methods

impl<C> MaxBytes<C>
[src]

Returns the number of bytes consumed for encoding/decoding the current item.

Returns the maximum number of bytes that can be consumed for encoding/decoding an item.

Sets the maximum number of bytes that can be consumed for encoding/decoding an item.

Error

If n is smaller than self.consumed_bytes(), an ErrorKind::InvalidInput error will be returned.

Important traits for &'a mut R

Returns a reference to the inner encoder or decoder.

Important traits for &'a mut R

Returns a mutable reference to the inner encoder or decoder.

Takes ownership of this instance and returns the inner encoder or decoder.

Trait Implementations

impl<C: Debug> Debug for MaxBytes<C>
[src]

Formats the value using the given formatter. Read more

impl<C: Default> Default for MaxBytes<C>
[src]

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

impl<D: Decode> Decode for MaxBytes<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

impl<E: Encode> Encode for MaxBytes<E>
[src]

The type of items to be encoded.

Encodes the items in the encoder and writes the encoded bytes to the given buffer. Read more

Tries to start encoding the given item. Read more

Returns the number of bytes required to encode all the items in the encoder. Read more

Returns true if there are no items to be encoded in the encoder, otherwise false. Read more

impl<E: SizedEncode> SizedEncode for MaxBytes<E>
[src]

Returns the exact number of bytes required to encode all the items remaining in the encoder.

Auto Trait Implementations

impl<C> Send for MaxBytes<C> where
    C: Send

impl<C> Sync for MaxBytes<C> where
    C: Sync