Trait parity_wasm::elements::Serialize
source · pub trait Serialize {
type Error: From<Error>;
// Required method
fn serialize<W: Write>(self, writer: &mut W) -> Result<(), Self::Error>;
}
Expand description
Serialization to serial i/o. Takes self by value to consume less memory (parity-wasm IR is being partially freed by filling the result buffer).