pub enum CanonicalFunction {
Lift {
core_func_index: u32,
type_index: u32,
options: Box<[CanonicalOption], Global>,
},
Lower {
func_index: u32,
options: Box<[CanonicalOption], Global>,
},
}
Expand description
Represents a canonical function in a WebAssembly component.
Variants§
Lift
Fields
§
options: Box<[CanonicalOption], Global>
The canonical options for the function.
The function lifts a core WebAssembly function to the canonical ABI.
Lower
Fields
§
options: Box<[CanonicalOption], Global>
The canonical options for the function.
The function lowers a canonical ABI function to a core WebAssembly function.
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, BinaryReaderError>
fn from_reader( reader: &mut BinaryReader<'a> ) -> Result<CanonicalFunction, BinaryReaderError>
Attempts to read
Self
from the provided binary reader, returning an
error if it is unable to do so.