Enum wasmparser::CanonicalFunction
source · pub enum CanonicalFunction {
Lift {
core_func_index: u32,
type_index: u32,
options: Box<[CanonicalOption]>,
},
Lower {
func_index: u32,
options: Box<[CanonicalOption]>,
},
ResourceNew {
resource: u32,
},
ResourceDrop {
resource: u32,
},
ResourceRep {
resource: u32,
},
ThreadSpawn {
func_ty_index: u32,
},
ThreadHwConcurrency,
}
Expand description
Represents a canonical function in a WebAssembly component.
Variants§
Lift
The function lifts a core WebAssembly function to the canonical ABI.
Fields
§
options: Box<[CanonicalOption]>
The canonical options for the function.
Lower
The function lowers a canonical ABI function to a core WebAssembly function.
Fields
§
options: Box<[CanonicalOption]>
The canonical options for the function.
ResourceNew
A function which creates a new owned handle to a resource.
ResourceDrop
A function which is used to drop resource handles of the specified type.
ResourceRep
A function which returns the underlying i32-based representation of the specified resource.
ThreadSpawn
A function which spawns a new thread by invoking the shared function.
ThreadHwConcurrency
A function which returns the number of threads that can be expected to execute concurrently
Trait Implementations§
source§impl Clone for CanonicalFunction
impl Clone for CanonicalFunction
source§fn clone(&self) -> CanonicalFunction
fn clone(&self) -> CanonicalFunction
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CanonicalFunction
impl Debug for CanonicalFunction
source§impl<'a> FromReader<'a> for CanonicalFunction
impl<'a> FromReader<'a> for CanonicalFunction
source§fn from_reader(reader: &mut BinaryReader<'a>) -> Result<CanonicalFunction>
fn from_reader(reader: &mut BinaryReader<'a>) -> Result<CanonicalFunction>
Attempts to read
Self
from the provided binary reader, returning an
error if it is unable to do so.source§impl PartialEq for CanonicalFunction
impl PartialEq for CanonicalFunction
impl Eq for CanonicalFunction
impl StructuralPartialEq for CanonicalFunction
Auto Trait Implementations§
impl Freeze for CanonicalFunction
impl RefUnwindSafe for CanonicalFunction
impl Send for CanonicalFunction
impl Sync for CanonicalFunction
impl Unpin for CanonicalFunction
impl UnwindSafe for CanonicalFunction
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.