Struct bytecodec::tuple::Tuple3Decoder [] [src]

pub struct Tuple3Decoder<D0, D1, D2> where
    D0: Decode,
    D1: Decode,
    D2: Decode
{ /* fields omitted */ }

Decoder for 3-elements tuples.

Methods

impl<D0, D1, D2> Tuple3Decoder<D0, D1, D2> where
    D0: Decode,
    D1: Decode,
    D2: Decode
[src]

[src]

Makes a new Tuple3Decoder instance.

[src]

Returns references to the inner decoders.

[src]

Returns mutable references to the inner decoders.

Trait Implementations

impl<D0: Debug, D1: Debug, D2: Debug> Debug for Tuple3Decoder<D0, D1, D2> where
    D0: Decode,
    D1: Decode,
    D2: Decode
[src]

[src]

Formats the value using the given formatter. Read more

impl<D0: Default, D1: Default, D2: Default> Default for Tuple3Decoder<D0, D1, D2> where
    D0: Decode,
    D1: Decode,
    D2: Decode
[src]

[src]

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

impl<D0, D1, D2> Decode for Tuple3Decoder<D0, D1, D2> where
    D0: Decode,
    D1: Decode,
    D2: Decode
[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 the lower bound of the number of bytes needed to decode the next item. Read more

Auto Trait Implementations

impl<D0, D1, D2> Send for Tuple3Decoder<D0, D1, D2> where
    D0: Send,
    D1: Send,
    D2: Send,
    <D0 as Decode>::Item: Send,
    <D1 as Decode>::Item: Send

impl<D0, D1, D2> Sync for Tuple3Decoder<D0, D1, D2> where
    D0: Sync,
    D1: Sync,
    D2: Sync,
    <D0 as Decode>::Item: Sync,
    <D1 as Decode>::Item: Sync