[][src]Struct substrate_wasmtime_jit::Compilation

pub struct Compilation {
    pub finished_functions: PrimaryMap<DefinedFuncIndex, *mut [VMFunctionBody]>,
    pub relocations: Relocations,
    pub trampolines: HashMap<VMSharedSignatureIndex, VMTrampoline>,
    pub trampoline_relocations: HashMap<VMSharedSignatureIndex, Vec<Relocation>>,
    pub jt_offsets: PrimaryMap<DefinedFuncIndex, JumpTableOffsets>,
    pub dbg_image: Option<Vec<u8>>,
    pub traps: Traps,
    pub address_transform: ModuleAddressMap,
}

Fields

finished_functions: PrimaryMap<DefinedFuncIndex, *mut [VMFunctionBody]>relocations: Relocationstrampolines: HashMap<VMSharedSignatureIndex, VMTrampoline>trampoline_relocations: HashMap<VMSharedSignatureIndex, Vec<Relocation>>jt_offsets: PrimaryMap<DefinedFuncIndex, JumpTableOffsets>dbg_image: Option<Vec<u8>>traps: Trapsaddress_transform: ModuleAddressMap

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> Same<T> for T

type Output = T

Should always be Self

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.