[][src]Struct tokio_serde_cbor::Codec

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

Cbor serializer and deserializer.

This is just a combined Decoder and Encoder.

Implementations

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<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 decoded frames.

type Error = Error

The type of unrecoverable frame decoding errors. Read more

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

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

type Error = Error

The type of encoding errors. Read more

Auto Trait Implementations

impl<Dec, Enc> RefUnwindSafe for Codec<Dec, Enc>[src]

impl<Dec, Enc> Send for Codec<Dec, Enc>[src]

impl<Dec, Enc> Sync for Codec<Dec, Enc>[src]

impl<Dec, Enc> Unpin for Codec<Dec, Enc>[src]

impl<Dec, Enc> UnwindSafe for Codec<Dec, Enc>[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.