Enum wast::component::CanonicalFuncKind
source · [−]pub enum CanonicalFuncKind<'a> {
Lift {
ty: ComponentTypeUse<'a, ComponentFunctionType<'a>>,
info: CanonLift<'a>,
},
Lower(CanonLower<'a>),
}
Expand description
Possible ways to define a canonical function in the text format.
Variants
Lift
Fields
ty: ComponentTypeUse<'a, ComponentFunctionType<'a>>
The lifted function’s type.
info: CanonLift<'a>
Information relating to the lifting of the core function.
A canonical function that is defined in terms of lifting a core function.
Lower(CanonLower<'a>)
A canonical function that is defined in terms of lowering a component function.
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for CanonicalFuncKind<'a>
impl<'a> Send for CanonicalFuncKind<'a>
impl<'a> Sync for CanonicalFuncKind<'a>
impl<'a> Unpin for CanonicalFuncKind<'a>
impl<'a> UnwindSafe for CanonicalFuncKind<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more