pub enum FrameValType {
I32,
I64,
F32,
F64,
V128,
AnyRef,
FuncRef,
ExternRef,
ExnRef,
ContRef,
}
Expand description
A type stored in a frame.
Variants§
Trait Implementations§
Source§impl Clone for FrameValType
impl Clone for FrameValType
Source§fn clone(&self) -> FrameValType
fn clone(&self) -> FrameValType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for FrameValType
impl Debug for FrameValType
Source§impl From<FrameValType> for u8
impl From<FrameValType> for u8
Source§fn from(value: FrameValType) -> u8
fn from(value: FrameValType) -> u8
Converts to this type from the input type.
Source§impl From<WasmValType> for FrameValType
impl From<WasmValType> for FrameValType
Source§fn from(ty: WasmValType) -> FrameValType
fn from(ty: WasmValType) -> FrameValType
Converts to this type from the input type.
Source§impl Hash for FrameValType
impl Hash for FrameValType
Source§impl Ord for FrameValType
impl Ord for FrameValType
Source§fn cmp(&self, other: &FrameValType) -> Ordering
fn cmp(&self, other: &FrameValType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for FrameValType
impl PartialEq for FrameValType
Source§impl PartialOrd for FrameValType
impl PartialOrd for FrameValType
Source§impl TryFrom<u8> for FrameValType
impl TryFrom<u8> for FrameValType
impl Copy for FrameValType
impl Eq for FrameValType
impl StructuralPartialEq for FrameValType
Auto Trait Implementations§
impl Freeze for FrameValType
impl RefUnwindSafe for FrameValType
impl Send for FrameValType
impl Sync for FrameValType
impl Unpin for FrameValType
impl UnwindSafe for FrameValType
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
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.