pub trait Serialize {
    fn serialize(&self) -> Result<Intermediate, Error>;
}
Expand description

Serialize trait.

The trait can be implemented by objects the can serialized to the intermediate representation.

Required Methods

Serialize the object.

Implementations on Foreign Types

Implementors