moddecode;modencode;modimpls;pubusedecode::Decode;pubuseencode::Encode;/// A trait that is [`Encode`] and [`Decode`].
////// A type that is both [`Encode`] and [`Decode`] is automatically implemented as a [`Codec`].
pubtraitCodec: Encode + Decode {}impl<T> Codec forTwhere T: Encode + Decode {}