pub trait Deserialize: Sized {
    type Error;

    fn deserialize(env: &Env, b: &Bytes) -> Result<Self, Self::Error>;
}
Expand description

Implemented by types that can be deserialized from Bytes.

All types that are convertible from RawVal are implemented.

Required Associated Types§

Required Methods§

Implementors§