[−][src]Enum wasmer_runtime::types::ExternDescriptor
Information about an import such as its type and metadata.
Variants
Function(FuncSig)The import is a function.
Global(GlobalDescriptor)The import is a global variable.
Memory(MemoryDescriptor)The import is a Wasm linear memory.
Table(TableDescriptor)The import is a Wasm table.
Trait Implementations
impl Clone for ExternDescriptor[src]
fn clone(&self) -> ExternDescriptor[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for ExternDescriptor[src]
impl Eq for ExternDescriptor[src]
impl<'_> From<&'_ FuncSig> for ExternDescriptor[src]
fn from(other: &FuncSig) -> ExternDescriptor[src]
impl<'_> From<&'_ GlobalDescriptor> for ExternDescriptor[src]
fn from(other: &GlobalDescriptor) -> ExternDescriptor[src]
impl<'_> From<&'_ MemoryDescriptor> for ExternDescriptor[src]
fn from(other: &MemoryDescriptor) -> ExternDescriptor[src]
impl<'_> From<&'_ TableDescriptor> for ExternDescriptor[src]
fn from(other: &TableDescriptor) -> ExternDescriptor[src]
impl From<FuncSig> for ExternDescriptor[src]
fn from(other: FuncSig) -> ExternDescriptor[src]
impl From<GlobalDescriptor> for ExternDescriptor[src]
fn from(other: GlobalDescriptor) -> ExternDescriptor[src]
impl From<MemoryDescriptor> for ExternDescriptor[src]
fn from(other: MemoryDescriptor) -> ExternDescriptor[src]
impl From<TableDescriptor> for ExternDescriptor[src]
fn from(other: TableDescriptor) -> ExternDescriptor[src]
impl PartialEq<ExternDescriptor> for ExternDescriptor[src]
fn eq(&self, other: &ExternDescriptor) -> bool[src]
fn ne(&self, other: &ExternDescriptor) -> bool[src]
impl StructuralEq for ExternDescriptor[src]
impl StructuralPartialEq for ExternDescriptor[src]
Auto Trait Implementations
impl RefUnwindSafe for ExternDescriptor
impl Send for ExternDescriptor
impl Sync for ExternDescriptor
impl Unpin for ExternDescriptor
impl UnwindSafe for ExternDescriptor
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized, [src]
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
fn equivalent(&self, key: &K) -> bool[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,