pub trait Encoding {
type EncodeError;
type DecodeError;
}Required Associated Types§
Sourcetype EncodeError
type EncodeError
The error type returned when encoding fails.
Sourcetype DecodeError
type DecodeError
The error type returned when decoding fails.