Skip to main content

CanonicalFunctionSection

Struct CanonicalFunctionSection 

Source
pub struct CanonicalFunctionSection { /* private fields */ }
Available on crate feature component-model only.
Expand description

An encoder for the canonical function section of WebAssembly components.

§Example

use wasm_encoder::{Component, CanonicalFunctionSection, CanonicalOption};

let mut functions = CanonicalFunctionSection::new();
functions.lift(0, 0, [CanonicalOption::UTF8]);

let mut component = Component::new();
component.section(&functions);

let bytes = component.finish();

Implementations§

Source§

impl CanonicalFunctionSection

Source

pub fn new() -> Self

Construct a new component function section encoder.

Source

pub fn len(&self) -> u32

The number of functions in the section.

Source

pub fn is_empty(&self) -> bool

Determines if the section is empty.

Source

pub fn lift<O>( &mut self, core_func_index: u32, type_index: u32, options: O, ) -> &mut Self

Define a function that will lift a core WebAssembly function to the canonical ABI.

Source

pub fn lower<O>(&mut self, func_index: u32, options: O) -> &mut Self

Define a function that will lower a canonical ABI function to a core WebAssembly function.

Source

pub fn resource_new(&mut self, ty_index: u32) -> &mut Self

Defines a function which will create an owned handle to the resource specified by ty_index.

Source

pub fn resource_drop(&mut self, ty_index: u32) -> &mut Self

Defines a function which will drop the specified type of handle.

Source

pub fn resource_rep(&mut self, ty_index: u32) -> &mut Self

Defines a function which will return the representation of the specified resource type.

Source

pub fn thread_spawn_ref(&mut self, ty_index: u32) -> &mut Self

Defines a function which will spawn a new thread by invoking a shared function of type ty_index.

Source

pub fn thread_spawn_indirect( &mut self, ty_index: u32, table_index: u32, ) -> &mut Self

Defines a function which will spawn a new thread by invoking a shared function indirectly through a funcref table.

Source

pub fn thread_available_parallelism(&mut self) -> &mut Self

Defines a function which will return the number of threads that can be expected to execute concurrently.

Source

pub fn backpressure_inc(&mut self) -> &mut Self

Defines a function which tells the host to increment the backpressure counter.

Source

pub fn backpressure_dec(&mut self) -> &mut Self

Defines a function which tells the host to decrement the backpressure counter.

Source

pub fn task_return<O>( &mut self, ty: Option<ComponentValType>, options: O, ) -> &mut Self

Defines a function which returns a result to the caller of a lifted export function. This allows the callee to continue executing after returning a result.

Source

pub fn task_cancel(&mut self) -> &mut Self

Defines a function to acknowledge cancellation of the current task.

Source

pub fn context_get(&mut self, ty: ValType, i: u32) -> &mut Self

Defines a new context.get intrinsic of the ith slot with the given value type.

Source

pub fn context_set(&mut self, ty: ValType, i: u32) -> &mut Self

Defines a new context.set intrinsic of the ith slot with the given value type.

Source

pub fn subtask_drop(&mut self) -> &mut Self

Defines a function to drop a specified task which has completed.

Source

pub fn subtask_cancel(&mut self, async_: bool) -> &mut Self

Defines a function to cancel an in-progress task.

Source

pub fn stream_new(&mut self, ty: u32) -> &mut Self

Defines a function to create a new stream handle of the specified type.

Source

pub fn stream_read<O>(&mut self, ty: u32, options: O) -> &mut Self

Defines a function to read from a stream of the specified type.

Source

pub fn stream_write<O>(&mut self, ty: u32, options: O) -> &mut Self

Defines a function to write to a stream of the specified type.

Source

pub fn stream_cancel_read(&mut self, ty: u32, async_: bool) -> &mut Self

Defines a function to cancel an in-progress read from a stream of the specified type.

Source

pub fn stream_cancel_write(&mut self, ty: u32, async_: bool) -> &mut Self

Defines a function to cancel an in-progress write to a stream of the specified type.

Source

pub fn stream_drop_readable(&mut self, ty: u32) -> &mut Self

Defines a function to drop the readable end of a stream of the specified type.

Source

pub fn stream_drop_writable(&mut self, ty: u32) -> &mut Self

Defines a function to drop the writable end of a stream of the specified type.

Source

pub fn future_new(&mut self, ty: u32) -> &mut Self

Defines a function to create a new future handle of the specified type.

Source

pub fn future_read<O>(&mut self, ty: u32, options: O) -> &mut Self

Defines a function to read from a future of the specified type.

Source

pub fn future_write<O>(&mut self, ty: u32, options: O) -> &mut Self

Defines a function to write to a future of the specified type.

Source

pub fn future_cancel_read(&mut self, ty: u32, async_: bool) -> &mut Self

Defines a function to cancel an in-progress read from a future of the specified type.

Source

pub fn future_cancel_write(&mut self, ty: u32, async_: bool) -> &mut Self

Defines a function to cancel an in-progress write to a future of the specified type.

Source

pub fn future_drop_readable(&mut self, ty: u32) -> &mut Self

Defines a function to drop the readable end of a future of the specified type.

Source

pub fn future_drop_writable(&mut self, ty: u32) -> &mut Self

Defines a function to drop the writable end of a future of the specified type.

Source

pub fn error_context_new<O>(&mut self, options: O) -> &mut Self

Defines a function to create a new error-context with a specified debug message.

Source

pub fn error_context_debug_message<O>(&mut self, options: O) -> &mut Self

Defines a function to get the debug message for a specified error-context.

Note that the debug message might not necessarily match what was passed to error-context.new.

Source

pub fn error_context_drop(&mut self) -> &mut Self

Defines a function to drop a specified error-context.

Source

pub fn waitable_set_new(&mut self) -> &mut Self

Declare a new waitable-set.new intrinsic, used to create a waitable-set pseudo-resource.

Source

pub fn waitable_set_wait(&mut self, async_: bool, memory: u32) -> &mut Self

Declare a new waitable-set.wait intrinsic, used to block on a waitable-set.

Source

pub fn waitable_set_poll(&mut self, async_: bool, memory: u32) -> &mut Self

Declare a new waitable-set.wait intrinsic, used to check, without blocking, if anything in a waitable-set is ready.

Source

pub fn waitable_set_drop(&mut self) -> &mut Self

Declare a new waitable-set.drop intrinsic, used to dispose a waitable-set pseudo-resource.

Source

pub fn waitable_join(&mut self) -> &mut Self

Declare a new waitable.join intrinsic, used to add an item to a waitable-set.

Source

pub fn thread_index(&mut self) -> &mut Self

Declare a new thread.index intrinsic, used to get the index of the current thread.

Source

pub fn thread_new_indirect( &mut self, ty_index: u32, table_index: u32, ) -> &mut Self

Declare a new thread.new-indirect intrinsic, used to create a new thread by invoking a function indirectly through a funcref table.

Source

pub fn thread_resume_later(&mut self) -> &mut Self

Declare a new thread.resume-later intrinsic.

Source

pub fn thread_suspend(&mut self, cancellable: bool) -> &mut Self

Declare a new thread.suspend intrinsic.

Source

pub fn thread_yield(&mut self, cancellable: bool) -> &mut Self

Declare a new thread.yield intrinsic.

Source

pub fn thread_suspend_then_resume(&mut self, cancellable: bool) -> &mut Self

Declare a new thread.suspend-then-resume intrinsic.

Source

pub fn thread_yield_then_resume(&mut self, cancellable: bool) -> &mut Self

Declare a new thread.yield-then-resume intrinsic.

Source

pub fn thread_suspend_then_promote(&mut self, cancellable: bool) -> &mut Self

Declare a new thread.suspend-then-promote intrinsic.

Source

pub fn thread_yield_then_promote(&mut self, cancellable: bool) -> &mut Self

Declare a new thread.yield-then-promote intrinsic.

Trait Implementations§

Source§

impl Clone for CanonicalFunctionSection

Source§

fn clone(&self) -> CanonicalFunctionSection

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl ComponentSection for CanonicalFunctionSection

Source§

fn id(&self) -> u8

Gets the section identifier for this section.
Source§

fn append_to_component(&self, dst: &mut Vec<u8>)

Appends this section to the specified destination list of bytes.
Source§

impl Debug for CanonicalFunctionSection

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for CanonicalFunctionSection

Source§

fn default() -> CanonicalFunctionSection

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

impl Encode for CanonicalFunctionSection

Source§

fn encode(&self, sink: &mut Vec<u8>)

Encode the type into the given byte sink.

Auto Trait Implementations§

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.