Struct wasmtime_environ::StackMapInformation [−][src]
pub struct StackMapInformation { pub code_offset: CodeOffset, pub stack_map: StackMap, }
Expand description
The offset within a function of a GC safepoint, and its associated stack map.
Fields
code_offset: CodeOffset
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
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]Deserialize this value from the given Serde deserializer. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Compare self to key
and return true
if they are equal.