Trait Encoding

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

Required Associated Types§

Source

type EncodeError

The error type returned when encoding fails.

Source

type DecodeError

The error type returned when decoding fails.

Implementors§