[][src]Struct futures_cbor_codec::Encoder

pub struct Encoder<Item> { /* fields omitted */ }

CBOR based encoder.

This encoder can be used with future_codec's FramedWrite to encode CBOR frames. Anything that is serdes Serialize can be encoded this way (at least in theory, some values return errors when attempted to serialize).

Methods

impl<Item: Serialize> Encoder<Item>[src]

pub fn new() -> Self[src]

Creates a new encoder.

By default, it doesn't do packed encoding (it includes struct field names) and it doesn't prefix the frames with self-describe tag.

pub fn sd(self, sd: SdMode) -> Self[src]

Turns the encoder into one with configured self-describe behaviour.

pub fn packed(self, packed: bool) -> Self[src]

Turns the encoder into one with configured packed encoding.

If packed is true, it omits the field names from the encoded data. That makes it smaller, but it also means the decoding end must know the exact order of fields and it can't be something like python, which would want to get a dictionary out of it.

Trait Implementations

impl<Item: Clone> Clone for Encoder<Item>[src]

impl<Item: Serialize> Default for Encoder<Item>[src]

impl<Item: Debug> Debug for Encoder<Item>[src]

impl<Item: Serialize> Encoder for Encoder<Item>[src]

type Item = Item

The type of items consumed by encode

type Error = Error

The type of encoding errors.

Auto Trait Implementations

impl<Item> Send for Encoder<Item>

impl<Item> Sync for Encoder<Item>

impl<Item> Unpin for Encoder<Item>

impl<Item> UnwindSafe for Encoder<Item>

impl<Item> RefUnwindSafe for Encoder<Item>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]