Trait Encoding

Source
pub trait Encoding {
    type EncodeError: Display;
    type DecodeError: Display;
}

Required Associated Types§

Source

type EncodeError: Display

The error type returned when encoding fails.

Source

type DecodeError: Display

The error type returned when decoding fails.

Implementors§