pub enum ExportDescription {
Function(FunctionIndex),
Table(TableIndex),
Memory(MemoryIndex),
Global(GlobalIndex),
}Expand description
Exportable definitions are functions, tables, memories, and globals, which are referenced through a respective descriptor.
Variants§
Trait Implementations§
Source§impl Clone for ExportDescription
impl Clone for ExportDescription
Source§fn clone(&self) -> ExportDescription
fn clone(&self) -> ExportDescription
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 ExportDescription
impl Debug for ExportDescription
Source§impl PartialEq for ExportDescription
impl PartialEq for ExportDescription
impl Copy for ExportDescription
impl Eq for ExportDescription
impl StructuralPartialEq for ExportDescription
Auto Trait Implementations§
impl Freeze for ExportDescription
impl RefUnwindSafe for ExportDescription
impl Send for ExportDescription
impl Sync for ExportDescription
impl Unpin for ExportDescription
impl UnwindSafe for ExportDescription
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