pub struct TrapEncodingBuilder { /* private fields */ }
Expand description

A helper structure to build the custom-encoded section of a wasmtime compilation image which encodes trap information.

This structure is incrementally fed the results of compiling individual functions and handles all the encoding internally, allowing usage of lookup_trap_code below with the resulting section.

Implementations§

source§

impl TrapEncodingBuilder

source

pub fn push(&mut self, func: Range<u64>, traps: &[TrapInformation])

Appends trap information about a function into this section.

This function is called to describe traps for the func range specified. The func offsets are specified relative to the text section itself, and the traps offsets are specified relative to the start of func.

This is required to be called in-order for increasing ranges of func to ensure the final array is properly sorted. Additionally traps must be sorted.

source

pub fn append_to(self, obj: &mut Object<'_>)

Encodes this section into the object provided.

Trait Implementations§

source§

impl Default for TrapEncodingBuilder

source§

fn default() -> TrapEncodingBuilder

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.