#[repr(C)]pub struct wasm_frame_t {
pub instance: *mut c_void,
pub module_offset: u32,
pub func_index: u32,
pub func_offset: u32,
pub func_name_wp: *const c_char,
pub sp: *mut u32,
pub frame_ref: *mut u8,
pub lp: *mut u32,
}Fields§
§instance: *mut c_void§module_offset: u32§func_index: u32§func_offset: u32§func_name_wp: *const c_char§sp: *mut u32§frame_ref: *mut u8§lp: *mut u32Trait Implementations§
Source§impl Clone for wasm_frame_t
impl Clone for wasm_frame_t
Source§fn clone(&self) -> wasm_frame_t
fn clone(&self) -> wasm_frame_t
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for wasm_frame_t
impl Debug for wasm_frame_t
Source§impl Default for wasm_frame_t
impl Default for wasm_frame_t
impl Copy for wasm_frame_t
Auto Trait Implementations§
impl Freeze for wasm_frame_t
impl RefUnwindSafe for wasm_frame_t
impl !Send for wasm_frame_t
impl !Sync for wasm_frame_t
impl Unpin for wasm_frame_t
impl UnwindSafe for wasm_frame_t
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