Struct wasmtime_environ::StackMapInformation
source · pub struct StackMapInformation {
pub code_offset: u32,
pub stack_map: StackMap,
}
Expand description
The offset within a function of a GC safepoint, and its associated stack map.
Fields§
§code_offset: u32
The offset of the GC safepoint within the function’s native code. It is relative to the beginning of the function.
stack_map: StackMap
The stack map for identifying live GC refs at the GC safepoint.
Trait Implementations§
source§impl Debug for StackMapInformation
impl Debug for StackMapInformation
source§impl<'de> Deserialize<'de> for StackMapInformation
impl<'de> Deserialize<'de> for StackMapInformation
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl RefUnwindSafe for StackMapInformation
impl Send for StackMapInformation
impl Sync for StackMapInformation
impl Unpin for StackMapInformation
impl UnwindSafe for StackMapInformation
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