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