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.