Trait seax_util::bytecode::Encode [] [src]

pub trait Encode {
    fn emit(&self) -> Vec<u8>;
}

Trait for an object that can be encoded to Seax bytecode.

All types that can be encoded must implement this.

Required Methods

Encodes this object to a list of bytes.

Implementors