pub enum ExportEntryType<'a> {
Any,
Function(FunctionSignature<'a>),
Global(VariableType),
}
Expand description
Export type.
Variants§
Any
Any type.
Function(FunctionSignature<'a>)
Type of function.
Global(VariableType)
Type of global.
Trait Implementations§
Source§impl<'a> Clone for ExportEntryType<'a>
impl<'a> Clone for ExportEntryType<'a>
Source§fn clone(&self) -> ExportEntryType<'a>
fn clone(&self) -> ExportEntryType<'a>
Returns a copy 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 moreAuto Trait Implementations§
impl<'a> Freeze for ExportEntryType<'a>
impl<'a> RefUnwindSafe for ExportEntryType<'a>
impl<'a> Send for ExportEntryType<'a>
impl<'a> Sync for ExportEntryType<'a>
impl<'a> Unpin for ExportEntryType<'a>
impl<'a> UnwindSafe for ExportEntryType<'a>
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