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 more