Enum wasmtime::ExternType
source · pub enum ExternType {
Func(FuncType),
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§
Func(FuncType)
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
impl ExternType
sourcepub fn func(&self) -> Option<&FuncType>
pub fn func(&self) -> Option<&FuncType>
Attempt to return the underlying type of this external type,
returning None
if it is a different type.
sourcepub fn unwrap_func(&self) -> &FuncType
pub fn unwrap_func(&self) -> &FuncType
Returns the underlying descriptor of this ExternType
, panicking
if it is a different type.
§Panics
Panics if self
is not of the right type.
sourcepub fn global(&self) -> Option<&GlobalType>
pub fn global(&self) -> Option<&GlobalType>
Attempt to return the underlying type of this external type,
returning None
if it is a different type.
sourcepub fn unwrap_global(&self) -> &GlobalType
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.
sourcepub fn table(&self) -> Option<&TableType>
pub fn table(&self) -> Option<&TableType>
Attempt to return the underlying type of this external type,
returning None
if it is a different type.
sourcepub fn unwrap_table(&self) -> &TableType
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.
sourcepub fn memory(&self) -> Option<&MemoryType>
pub fn memory(&self) -> Option<&MemoryType>
Attempt to return the underlying type of this external type,
returning None
if it is a different type.
sourcepub fn unwrap_memory(&self) -> &MemoryType
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.
Trait Implementations§
source§impl Clone for ExternType
impl Clone for ExternType
source§fn clone(&self) -> ExternType
fn clone(&self) -> ExternType
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more