Enum wast::component::CoreFuncKind
source · [−]pub enum CoreFuncKind<'a> {
Lower(CanonLower<'a>),
Alias(InlineExportAlias<'a>),
}
Expand description
Represents the kind of core functions.
Variants
Lower(CanonLower<'a>)
The core function is defined in terms of lowering a component function.
The core function is actually a member of the canon section.
Alias(InlineExportAlias<'a>)
The core function is defined in terms of aliasing a module instance export.
The core function is actually a member of the core alias section.
Trait Implementations
sourceimpl<'a> Debug for CoreFuncKind<'a>
impl<'a> Debug for CoreFuncKind<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for CoreFuncKind<'a>
impl<'a> Send for CoreFuncKind<'a>
impl<'a> Sync for CoreFuncKind<'a>
impl<'a> Unpin for CoreFuncKind<'a>
impl<'a> UnwindSafe for CoreFuncKind<'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