pub trait Serialize {
    fn serialize(self, env: &Env) -> Bytes;
}
Expand description

Implemented by types that can be serialized to Bytes.

All types that are convertible to RawVal are implemented.

Required Methods

Implementors