Trait parity_wasm::elements::Serialize [] [src]

pub trait Serialize {
    type Error;
    fn serialize<W: Write>(self, writer: &mut W) -> Result<(), Self::Error>;
}

Serialization to serial i/o

Associated Types

Serialization error produced by serialization routine.

Required Methods

Serialize type to serial i/o

Implementors