pub enum Export {
LiftedFunction {
ty: TypeFuncIndex,
func: CoreDef,
options: OptionsId,
},
ModuleStatic {
ty: ComponentCoreModuleTypeId,
index: StaticModuleIndex,
},
ModuleImport {
ty: TypeModuleIndex,
import: RuntimeImportIndex,
},
Instance {
ty: TypeComponentInstanceIndex,
exports: IndexMap<String, Export>,
},
Type(TypeDef),
}Expand description
Same as info::Export