Struct wasmtime_environ::isa::unwind::input::UnwindInfo [−][src]
pub struct UnwindInfo<Reg> { pub prologue_size: u32, pub prologue_unwind_codes: Vec<(u32, UnwindCode<Reg>), Global>, pub epilogues_unwind_codes: Vec<Vec<(u32, UnwindCode<Reg>), Global>, Global>, pub function_size: u32, pub word_size: u8, pub initial_sp_offset: u8, }
Expand description
Unwind information as generated by a backend.
Fields
prologue_size: u32
Size of the prologue.
prologue_unwind_codes: Vec<(u32, UnwindCode<Reg>), Global>
Unwind codes for prologue.
epilogues_unwind_codes: Vec<Vec<(u32, UnwindCode<Reg>), Global>, Global>
Unwind codes for epilogues.
function_size: u32
Entire function size.
word_size: u8
Platform word size in bytes.
initial_sp_offset: u8
Initial stack pointer offset.
Trait Implementations
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<UnwindInfo<Reg>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
[src]
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<UnwindInfo<Reg>, <__D as Deserializer<'de>>::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 !=
.
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
[src]
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
[src]Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations
impl<Reg> RefUnwindSafe for UnwindInfo<Reg> where
Reg: RefUnwindSafe,
impl<Reg> Send for UnwindInfo<Reg> where
Reg: Send,
impl<Reg> Sync for UnwindInfo<Reg> where
Reg: Sync,
impl<Reg> Unpin for UnwindInfo<Reg> where
Reg: Unpin,
impl<Reg> UnwindSafe for UnwindInfo<Reg> where
Reg: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key
and return true
if they are equal.