Trait encdec_base::EncDec

source ·
pub trait EncDec<'a, E = Error>: Encode<Error = E> + Decode<'a, Output = Self, Error = E> { }
Expand description

Composite trait requiring an object is reversibly encodable and decodable into borrowed types, useful for simplifying type bounds / generics.

(ie. Self == <Self as Decode>::Output, <Self as Encode::Error> == <Self as Decode::Error>)

Implementors§

source§

impl<'a, T: Encode<Error = E> + Decode<'a, Output = Self, Error = E>, E> EncDec<'a, E> for T

Automatic implementation for types implementing Encode and Decode