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 moresource§impl Debug for ExternType
impl Debug for ExternType
source§impl From<FuncType> for ExternType
impl From<FuncType> for ExternType
source§fn from(ty: FuncType) -> ExternType
fn from(ty: FuncType) -> ExternType
source§impl From<GlobalType> for ExternType
impl From<GlobalType> for ExternType
source§fn from(ty: GlobalType) -> ExternType
fn from(ty: GlobalType) -> ExternType
source§impl From<MemoryType> for ExternType
impl From<MemoryType> for ExternType
source§fn from(ty: MemoryType) -> ExternType
fn from(ty: MemoryType) -> ExternType
source§impl From<TableType> for ExternType
impl From<TableType> for ExternType
source§fn from(ty: TableType) -> ExternType
fn from(ty: TableType) -> 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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more