pub trait BlockCodec {
// Required methods
fn encode(&self, _codec: CodecOpts) -> Vec<u8> ⓘ;
fn decode(from: &[u8], _codec: CodecOpts) -> Self;
}
Required Methods§
fn encode(&self, _codec: CodecOpts) -> Vec<u8> ⓘ
fn decode(from: &[u8], _codec: CodecOpts) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.