pub trait Decoder:
Send
+ Sync
+ 'static {
// Provided method
fn decode<T>(&self, bytes: Bytes) -> Result<T, BoxError>
where Self: DecodeValue<T> { ... }
}Expand description
A decoder that can deserialize a value from a byte stream.
Provided Methods§
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.