Struct Instructions

Source
pub struct Instructions<'a, 'b> { /* private fields */ }
Expand description

Writer for a sequence of instructions in a function subsection

Implementations§

Source§

impl Instructions<'_, '_>

Source

pub fn arg_get(&mut self, arg: u32)

Source

pub fn call_core(&mut self, func: u32)

Source

pub fn memory_to_string(&mut self, mem: u32)

Source

pub fn string_to_memory(&mut self, malloc: u32, mem: u32)

Source

pub fn call_adapter(&mut self, func: u32)

Source

pub fn defer_call_core(&mut self, func: u32)

Source

pub fn i32_to_s8(&mut self)

Source

pub fn i32_to_s8x(&mut self)

Source

pub fn i32_to_u8(&mut self)

Source

pub fn i32_to_s16(&mut self)

Source

pub fn i32_to_s16x(&mut self)

Source

pub fn i32_to_u16(&mut self)

Source

pub fn i32_to_s32(&mut self)

Source

pub fn i32_to_u32(&mut self)

Source

pub fn i32_to_s64(&mut self)

Source

pub fn i32_to_u64(&mut self)

Source

pub fn i64_to_s8(&mut self)

Source

pub fn i64_to_s8x(&mut self)

Source

pub fn i64_to_u8(&mut self)

Source

pub fn i64_to_s16(&mut self)

Source

pub fn i64_to_s16x(&mut self)

Source

pub fn i64_to_u16(&mut self)

Source

pub fn i64_to_s32(&mut self)

Source

pub fn i64_to_s32x(&mut self)

Source

pub fn i64_to_u32(&mut self)

Source

pub fn i64_to_s64(&mut self)

Source

pub fn i64_to_u64(&mut self)

Source

pub fn s8_to_i32(&mut self)

Source

pub fn u8_to_i32(&mut self)

Source

pub fn s16_to_i32(&mut self)

Source

pub fn u16_to_i32(&mut self)

Source

pub fn s32_to_i32(&mut self)

Source

pub fn u32_to_i32(&mut self)

Source

pub fn s64_to_i32(&mut self)

Source

pub fn s64_to_i32x(&mut self)

Source

pub fn u64_to_i32(&mut self)

Source

pub fn u64_to_i32x(&mut self)

Source

pub fn s8_to_i64(&mut self)

Source

pub fn u8_to_i64(&mut self)

Source

pub fn s16_to_i64(&mut self)

Source

pub fn u16_to_i64(&mut self)

Source

pub fn s32_to_i64(&mut self)

Source

pub fn u32_to_i64(&mut self)

Source

pub fn s64_to_i64(&mut self)

Source

pub fn u64_to_i64(&mut self)

Trait Implementations§

Source§

impl Drop for Instructions<'_, '_>

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<'a, 'b> Freeze for Instructions<'a, 'b>

§

impl<'a, 'b> RefUnwindSafe for Instructions<'a, 'b>

§

impl<'a, 'b> Send for Instructions<'a, 'b>

§

impl<'a, 'b> Sync for Instructions<'a, 'b>

§

impl<'a, 'b> Unpin for Instructions<'a, 'b>

§

impl<'a, 'b> !UnwindSafe for Instructions<'a, 'b>

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where 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 T
where 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 T
where U: Into<T>,

Source§

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 T
where U: TryFrom<T>,

Source§

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.