pub trait CodecExt {
    fn chain<T>(self, codec: T) -> ChainCodec<Self, T>
    where
        Self: Sized
; }
Expand description

Interface that provides extensions to the codec interface

Required Methods

Chains this codec with another codec

Implementors