Struct bytecodec::tuple::Tuple4Encoder [] [src]

pub struct Tuple4Encoder<E0, E1, E2, E3> { /* fields omitted */ }

Encoder for 4-elements tuples.

Methods

impl<E0, E1, E2, E3> Tuple4Encoder<E0, E1, E2, E3> where
    E0: Encode,
    E1: Encode,
    E2: Encode,
    E3: Encode
[src]

[src]

Makes a new Tuple4Encoder instance.

[src]

Returns references to the inner decoders.

[src]

Returns mutable references to the inner decoders.

Trait Implementations

impl<E0: Debug, E1: Debug, E2: Debug, E3: Debug> Debug for Tuple4Encoder<E0, E1, E2, E3>
[src]

[src]

Formats the value using the given formatter. Read more

impl<E0: Default, E1: Default, E2: Default, E3: Default> Default for Tuple4Encoder<E0, E1, E2, E3>
[src]

[src]

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

impl<E0, E1, E2, E3> Encode for Tuple4Encoder<E0, E1, E2, E3> where
    E0: Encode,
    E1: Encode,
    E2: Encode,
    E3: Encode
[src]

The type of items to be encoded.

[src]

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

[src]

Tries to start encoding the given item. Read more

[src]

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

[src]

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

impl<E0, E1, E2, E3> ExactBytesEncode for Tuple4Encoder<E0, E1, E2, E3> where
    E0: ExactBytesEncode,
    E1: ExactBytesEncode,
    E2: ExactBytesEncode,
    E3: ExactBytesEncode
[src]

[src]

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

Auto Trait Implementations

impl<E0, E1, E2, E3> Send for Tuple4Encoder<E0, E1, E2, E3> where
    E0: Send,
    E1: Send,
    E2: Send,
    E3: Send

impl<E0, E1, E2, E3> Sync for Tuple4Encoder<E0, E1, E2, E3> where
    E0: Sync,
    E1: Sync,
    E2: Sync,
    E3: Sync