[−][src]Enum wasmi::ExternVal
An external value is the runtime representation of an entity that can be imported or exported.
Variants
Func(FuncRef)
Table(TableRef)
Memory(MemoryRef)
Global(GlobalRef)
Should be immutable.
Implementations
impl ExternVal
[src][−]
pub fn as_func(&self) -> Option<&FuncRef>
[src][−]
Get underlying function reference if this ExternVal
contains
a function, or None
if it is some other kind.
pub fn as_table(&self) -> Option<&TableRef>
[src][−]
Get underlying table reference if this ExternVal
contains
a table, or None
if it is some other kind.
pub fn as_memory(&self) -> Option<&MemoryRef>
[src][−]
Get underlying memory reference if this ExternVal
contains
a memory, or None
if it is some other kind.
pub fn as_global(&self) -> Option<&GlobalRef>
[src][−]
Get underlying global variable reference if this ExternVal
contains
a global, or None
if it is some other kind.
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for ExternVal
impl !Send for ExternVal
impl !Sync for ExternVal
impl Unpin for ExternVal
impl !UnwindSafe for ExternVal
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,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,