[][src]Struct wasm3_sys::M3Compilation

#[repr(C)]pub struct M3Compilation {
    pub runtime: IM3Runtime,
    pub module: IM3Module,
    pub wasm: bytes_t,
    pub wasmEnd: bytes_t,
    pub block: M3CompilationScope,
    pub function: IM3Function,
    pub page: IM3CodePage,
    pub releasedPatches: IM3BranchPatch,
    pub numEmits: u32,
    pub numOpcodes: u32,
    pub firstDynamicStackIndex: u16,
    pub stackIndex: u16,
    pub firstConstSlotIndex: u16,
    pub maxConstSlotIndex: u16,
    pub firstLocalSlotIndex: u16,
    pub firstDynamicSlotIndex: u16,
    pub constants: [m3slot_t; 120],
    pub wasmStack: [u16; 2000],
    pub typeStack: [u8; 2000],
    pub m3Slots: [u8; 4000],
    pub maxAllocatedSlotPlusOne: u16,
    pub regStackIndexPlusOne: [u16; 2],
    pub previousOpcode: m3opcode_t,
}

Fields

runtime: IM3Runtimemodule: IM3Modulewasm: bytes_twasmEnd: bytes_tblock: M3CompilationScopefunction: IM3Functionpage: IM3CodePagereleasedPatches: IM3BranchPatchnumEmits: u32numOpcodes: u32firstDynamicStackIndex: u16stackIndex: u16firstConstSlotIndex: u16maxConstSlotIndex: u16firstLocalSlotIndex: u16firstDynamicSlotIndex: u16constants: [m3slot_t; 120]wasmStack: [u16; 2000]typeStack: [u8; 2000]m3Slots: [u8; 4000]maxAllocatedSlotPlusOne: u16regStackIndexPlusOne: [u16; 2]previousOpcode: m3opcode_t

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.