[][src]Struct susy_pwasm_utils::Module

pub struct Module {
    pub types: RefList<Type>,
    pub funcs: RefList<Func>,
    pub memory: RefList<Memory>,
    pub tables: RefList<Table>,
    pub globals: RefList<Global>,
    pub start: Option<EntryRef<Func>>,
    pub exports: Vec<Export>,
    pub elements: Vec<ElementSegment>,
    pub data: Vec<DataSegment>,
    pub other: BTreeMap<usize, Section>,
}

Module

Fields

types: RefList<Type>

Refence-tracking list of types.

funcs: RefList<Func>

Refence-tracking list of funcs.

memory: RefList<Memory>

Refence-tracking list of memory instances.

tables: RefList<Table>

Refence-tracking list of table instances.

globals: RefList<Global>

Refence-tracking list of globals.

start: Option<EntryRef<Func>>

Reference to start function.

exports: Vec<Export>

References to exported objects.

elements: Vec<ElementSegment>

List of element segments.

data: Vec<DataSegment>

List of data segments.

other: BTreeMap<usize, Section>

Other module functions that are not decoded or processed.

Methods

impl Module[src]

pub fn from_elements(module: &Module) -> Result<Self, Error>[src]

Initialize module from susy-wasm Module.

pub fn generate(&self) -> Result<Module, Error>[src]

Generate raw format representation.

Trait Implementations

impl Default for Module[src]

impl Debug for Module[src]

Auto Trait Implementations

impl !Send for Module

impl !Sync for Module

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.