[][src]Struct tokio_serde_cbor::Encoder

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

CBOR based encoder.

This encoder can be used with tokio_io's Framed 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).

Implementations

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 confifured 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: Debug> Debug for Encoder<Item>[src]

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

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

type Error = Error

The type of encoding errors. Read more

Auto Trait Implementations

impl<Item> RefUnwindSafe for Encoder<Item>[src]

impl<Item> Send for Encoder<Item>[src]

impl<Item> Sync for Encoder<Item>[src]

impl<Item> Unpin for Encoder<Item>[src]

impl<Item> UnwindSafe for Encoder<Item>[src]

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.