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: Relocations
§trampolines: HashMap<VMSharedSignatureIndex, VMTrampoline>
§trampoline_relocations: HashMap<VMSharedSignatureIndex, Vec<Relocation>>
§jt_offsets: PrimaryMap<DefinedFuncIndex, JumpTableOffsets>
§dbg_image: Option<Vec<u8>>
§traps: Traps
§address_transform: ModuleAddressMap
Auto Trait Implementations§
impl Freeze for Compilation
impl RefUnwindSafe for Compilation
impl !Send for Compilation
impl !Sync for Compilation
impl Unpin for Compilation
impl UnwindSafe for Compilation
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more