[][src]Struct futures_cbor_codec::Codec

pub struct Codec<Dec, Enc> { /* fields omitted */ }

Cbor serializer and deserializer.

This is just a combined Decoder and Encoder.

Methods

impl<'de, Dec: Deserialize<'de>, Enc: Serialize> Codec<Dec, Enc>[src]

pub fn new() -> Self[src]

Creates a new codec

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

Turns the internal encoder into one with confifured self-describe behaviour.

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

Turns the internal 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<Dec: Clone, Enc: Clone> Clone for Codec<Dec, Enc>[src]

impl<'de, Dec: Deserialize<'de>, Enc: Serialize> Default for Codec<Dec, Enc>[src]

impl<Dec: Debug, Enc: Debug> Debug for Codec<Dec, Enc>[src]

impl<'de, Dec: Deserialize<'de>, Enc: Serialize> Decoder for Codec<Dec, Enc>[src]

type Item = Dec

The type of items returned by decode

type Error = Error

The type of decoding errors.

impl<'de, Dec: Deserialize<'de>, Enc: Serialize> Encoder for Codec<Dec, Enc>[src]

type Item = Enc

The type of items consumed by encode

type Error = Error

The type of encoding errors.

Auto Trait Implementations

impl<Dec, Enc> Send for Codec<Dec, Enc>

impl<Dec, Enc> Sync for Codec<Dec, Enc>

impl<Dec, Enc> Unpin for Codec<Dec, Enc>

impl<Dec, Enc> UnwindSafe for Codec<Dec, Enc>

impl<Dec, Enc> RefUnwindSafe for Codec<Dec, Enc>

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]