pub struct CompileResult {
pub native_code: Vec<u8>,
pub dispatch_table: Vec<i32>,
pub trap_table: Vec<(u32, u32)>,
pub exit_label_offset: u32,
}Expand description
Result of compilation.
Fields§
§native_code: Vec<u8>§dispatch_table: Vec<i32>§trap_table: Vec<(u32, u32)>§exit_label_offset: u32Auto Trait Implementations§
impl Freeze for CompileResult
impl RefUnwindSafe for CompileResult
impl Send for CompileResult
impl Sync for CompileResult
impl Unpin for CompileResult
impl UnsafeUnpin for CompileResult
impl UnwindSafe for CompileResult
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