Struct protobuf_codec::scalar::CustomBytesDecoder [] [src]

pub struct CustomBytesDecoder<D>(_);

Decoder for custom bytes values.

This is equivalent to BytesDecoder in the protobol buffers layer, but it decodes the payload bytes by using D and returns the decoded items to the application layer instead of raw bytes.

Methods

impl<D: Decode> CustomBytesDecoder<D>
[src]

[src]

Makes a new CustomBytesDecoder instance.

[src]

Returns a reference to the inner decoder.

[src]

Returns a mutable reference to the inner decoder.

[src]

Takes ownership of the instance and returns the inner decoder.

Trait Implementations

impl<D: Debug> Debug for CustomBytesDecoder<D>
[src]

[src]

Formats the value using the given formatter. Read more

impl<D: Default> Default for CustomBytesDecoder<D>
[src]

[src]

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

impl<D: Decode> Decode for CustomBytesDecoder<D>
[src]

The type of items to be decoded.

[src]

Consumes the given buffer (a part of a byte sequence), and proceeds the decoding process. Read more

[src]

Finishes the current decoding process and returns the decoded item. Read more

[src]

Returns the lower bound of the number of bytes needed to decode the next item. Read more

[src]

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<D: Decode> ValueDecode for CustomBytesDecoder<D>
[src]

[src]

Returns the wire type of the value.

Auto Trait Implementations

impl<D> Send for CustomBytesDecoder<D> where
    D: Send

impl<D> Sync for CustomBytesDecoder<D> where
    D: Sync