pub enum ComponentExportKind {
Module,
Func,
Value,
Type,
Instance,
Component,
}Expand description
Represents the kind of an export from a WebAssembly component.
Variants§
Module
The export is a core module.
Func
The export is a function.
Value
The export is a value.
Type
The export is a type.
Instance
The export is an instance.
Component
The export is a component.
Trait Implementations§
Source§impl Clone for ComponentExportKind
Available on crate feature component-model only.
impl Clone for ComponentExportKind
Available on crate feature
component-model only.Source§fn clone(&self) -> ComponentExportKind
fn clone(&self) -> ComponentExportKind
Returns a duplicate 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 moreSource§impl Debug for ComponentExportKind
Available on crate feature component-model only.
impl Debug for ComponentExportKind
Available on crate feature
component-model only.Source§impl Encode for ComponentExportKind
Available on crate feature component-model only.
impl Encode for ComponentExportKind
Available on crate feature
component-model only.Source§impl From<ComponentExternalKind> for ComponentExportKind
Available on crate features component-model and wasmparser only.
impl From<ComponentExternalKind> for ComponentExportKind
Available on crate features
component-model and wasmparser only.Source§fn from(kind: ComponentExternalKind) -> Self
fn from(kind: ComponentExternalKind) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ComponentExportKind
Available on crate feature component-model only.
impl PartialEq for ComponentExportKind
Available on crate feature
component-model only.impl Copy for ComponentExportKind
Available on crate feature
component-model only.impl Eq for ComponentExportKind
Available on crate feature
component-model only.impl StructuralPartialEq for ComponentExportKind
Available on crate feature
component-model only.Auto Trait Implementations§
impl Freeze for ComponentExportKind
impl RefUnwindSafe for ComponentExportKind
impl Send for ComponentExportKind
impl Sync for ComponentExportKind
impl Unpin for ComponentExportKind
impl UnwindSafe for ComponentExportKind
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more