Skip to main content

Decoder

Trait Decoder 

Source
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§

Source

fn decode<T>(&self, bytes: Bytes) -> Result<T, BoxError>
where Self: DecodeValue<T>,

Decode a value from bytes.

§Errors

Returns an error if deserialization fails.

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.

Implementations on Foreign Types§

Source§

impl<C> Decoder for Arc<C>
where C: Decoder,

Implementors§