pub enum ExternType {
    Function(FunctionType),
    Global(GlobalType),
    Table(TableType),
    Memory(MemoryType),
}
Expand description

A list of all possible types which can be externally referenced from a WebAssembly module.

This list can be found in ImportType or ExportType, so these types can either be imported or exported.

Variants§

§

Function(FunctionType)

This external type is the type of a WebAssembly function.

§

Global(GlobalType)

This external type is the type of a WebAssembly global.

§

Table(TableType)

This external type is the type of a WebAssembly table.

§

Memory(MemoryType)

This external type is the type of a WebAssembly memory.

Implementations§

source§

impl ExternType

source

pub fn func(&self) -> Option<&FunctionType>

Attempt to return the underlying type of this external type, returning None if it is a different type.

source

pub fn unwrap_func(&self) -> &FunctionType

Returns the underlying descriptor of this ExternType, panicking if it is a different type.

§Panics

Panics if self is not of the right type.

source

pub fn global(&self) -> Option<&GlobalType>

Attempt to return the underlying type of this external type, returning None if it is a different type.

source

pub fn unwrap_global(&self) -> &GlobalType

Returns the underlying descriptor of this ExternType, panicking if it is a different type.

§Panics

Panics if self is not of the right type.

source

pub fn table(&self) -> Option<&TableType>

Attempt to return the underlying type of this external type, returning None if it is a different type.

source

pub fn unwrap_table(&self) -> &TableType

Returns the underlying descriptor of this ExternType, panicking if it is a different type.

§Panics

Panics if self is not of the right type.

source

pub fn memory(&self) -> Option<&MemoryType>

Attempt to return the underlying type of this external type, returning None if it is a different type.

source

pub fn unwrap_memory(&self) -> &MemoryType

Returns the underlying descriptor of this ExternType, panicking if it is a different type.

§Panics

Panics if self is not of the right type.

source

pub fn is_compatible_with( &self, other: &Self, runtime_size: Option<u32> ) -> bool

Check if two externs are compatible

Trait Implementations§

source§

impl Clone for ExternType

source§

fn clone(&self) -> ExternType

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for ExternType

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Hash for ExternType

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for ExternType

source§

fn eq(&self, other: &ExternType) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for ExternType

source§

impl StructuralPartialEq for ExternType

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> ArchivePointee for T

§

type ArchivedMetadata = ()

The archived version of the pointer metadata for this type.
source§

fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata ) -> <T as Pointee>::Metadata

Converts some archived metadata to the pointer metadata for itself.
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CallHasher for T
where T: Hash + ?Sized,

source§

default fn get_hash<H, B>(value: &H, build_hasher: &B) -> u64
where H: Hash + ?Sized, B: BuildHasher,

source§

impl<F, W, T, D> Deserialize<With<T, W>, D> for F
where W: DeserializeWith<F, T, D>, D: Fallible + ?Sized, F: ?Sized,

source§

fn deserialize( &self, deserializer: &mut D ) -> Result<With<T, W>, <D as Fallible>::Error>

Deserializes using the given deserializer
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> LayoutRaw for T

source§

fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>

Gets the layout of the type.
source§

impl<T> Pointee for T

§

type Metadata = ()

The type for metadata in pointers and references to Self.
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.