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

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

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).

Associated Types

type Error: From<Error>[]

Serialization error produced by serialization routine.

Required methods

fn serialize<W: Write>(self, writer: &mut W) -> Result<(), Self::Error>[]

Serialize type to serial i/o

Implementations on Foreign Types

impl Serialize for String[src][]

type Error = Error

Implementors

impl Serialize for BlockType[src][+]

type Error = Error

impl Serialize for External[src][+]

type Error = Error

impl Serialize for Instruction[src][+]

type Error = Error

impl Serialize for Internal[src][+]

type Error = Error

impl Serialize for RelocationEntry[src][+]

impl Serialize for Section[src][+]

type Error = Error

impl Serialize for TableElementType[src][+]

type Error = Error

impl Serialize for Type[src][+]

type Error = Error

impl Serialize for ValueType[src][+]

type Error = Error

impl Serialize for CodeSection[src][+]

type Error = Error

impl Serialize for CustomSection[src][+]

type Error = Error

impl Serialize for DataSection[src][+]

type Error = Error

impl Serialize for DataSegment[src][+]

type Error = Error

impl Serialize for ElementSection[src][+]

type Error = Error

impl Serialize for ElementSegment[src][+]

type Error = Error

impl Serialize for ExportEntry[src][+]

type Error = Error

impl Serialize for ExportSection[src][+]

type Error = Error

impl Serialize for Func[src][+]

type Error = Error

impl Serialize for FuncBody[src][+]

type Error = Error

impl Serialize for FunctionNameSubsection[src][+]

impl Serialize for FunctionSection[src][+]

type Error = Error

impl Serialize for FunctionType[src][+]

type Error = Error

impl Serialize for GlobalEntry[src][+]

type Error = Error

impl Serialize for GlobalSection[src][+]

type Error = Error

impl Serialize for GlobalType[src][+]

type Error = Error

impl Serialize for ImportEntry[src][+]

type Error = Error

impl Serialize for ImportSection[src][+]

type Error = Error

impl Serialize for InitExpr[src][+]

type Error = Error

impl Serialize for Instructions[src][+]

type Error = Error

impl Serialize for Local[src][+]

type Error = Error

impl Serialize for LocalNameSubsection[src][+]

impl Serialize for MemorySection[src][+]

type Error = Error

impl Serialize for MemoryType[src][+]

type Error = Error

impl Serialize for Module[src][+]

impl Serialize for ModuleNameSubsection[src][+]

impl Serialize for NameSection[src][+]

impl Serialize for RelocSection[src][+]

impl Serialize for ResizableLimits[src][+]

type Error = Error

impl Serialize for TableSection[src][+]

type Error = Error

impl Serialize for TableType[src][+]

type Error = Error

impl Serialize for TypeSection[src][+]

type Error = Error

impl Serialize for Uint8[src][+]

type Error = Error

impl Serialize for Uint32[src][+]

type Error = Error

impl Serialize for Uint64[src][+]

type Error = Error

impl Serialize for VarInt7[src][+]

type Error = Error

impl Serialize for VarInt32[src][+]

type Error = Error

impl Serialize for VarInt64[src][+]

type Error = Error

impl Serialize for VarUint1[src][+]

type Error = Error

impl Serialize for VarUint7[src][+]

type Error = Error

impl Serialize for VarUint32[src][+]

type Error = Error

impl Serialize for VarUint64[src][+]

type Error = Error

impl<I: Serialize<Error = Error>, T: IntoIterator<Item = I>> Serialize for CountedListWriter<I, T>[src][+]

type Error = Error

impl<T> Serialize for IndexMap<T> where
    T: Serialize,
    Error: From<<T as Serialize>::Error>, 
[src][+]