pub enum ExternType {
Func(FuncType),
Table(TableType),
Mem(MemType),
Global(GlobalType),
}Expand description
Variants§
Trait Implementations§
Source§impl Clone for ExternType
impl Clone for ExternType
Source§fn clone(&self) -> ExternType
fn clone(&self) -> ExternType
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 ExternType
impl Debug for ExternType
Source§impl ImportSubTypeRelation for ExternType
impl ImportSubTypeRelation for ExternType
fn is_subtype_of(&self, other: &Self) -> bool
Source§impl PartialEq for ExternType
impl PartialEq for ExternType
impl Eq for ExternType
impl StructuralPartialEq for ExternType
Auto Trait Implementations§
impl Freeze for ExternType
impl RefUnwindSafe for ExternType
impl Send for ExternType
impl Sync for ExternType
impl Unpin for ExternType
impl UnwindSafe for ExternType
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