pub enum ValType {
I32,
I64,
F32,
F64,
V128,
Ref(RefType),
}
Expand description
A list of all possible value types in WebAssembly.
§Subtyping and Equality
ValType
does not implement Eq
, because reference types have a subtyping
relationship, and so 99.99% of the time you actually want to check whether
one type matches (i.e. is a subtype of) another type. You can use the
ValType::matches
and Val::matches_ty
methods
to perform these types of checks. If, however, you are in that 0.01%
scenario where you need to check precise equality between types, you can use
the ValType::eq
method.
Variants§
I32
Signed 32 bit integer.
I64
Signed 64 bit integer.
F32
Floating point 32 bit integer.
F64
Floating point 64 bit integer.
V128
A 128 bit number.
Ref(RefType)
An opaque reference to some type on the heap.
Implementations§
source§impl ValType
impl ValType
sourcepub const NULLEXTERNREF: Self = _
pub const NULLEXTERNREF: Self = _
The nullexternref
type, aka (ref null noextern)
.
sourcepub const NULLFUNCREF: Self = _
pub const NULLFUNCREF: Self = _
The nullfuncref
type, aka (ref null nofunc)
.
sourcepub fn is_num(&self) -> bool
pub fn is_num(&self) -> bool
Returns true if ValType
matches any of the numeric types. (e.g. I32
,
I64
, F32
, F64
).
sourcepub fn is_funcref(&self) -> bool
pub fn is_funcref(&self) -> bool
Is this the funcref
(aka (ref null func)
) type?
sourcepub fn is_externref(&self) -> bool
pub fn is_externref(&self) -> bool
Is this the externref
(aka (ref null extern)
) type?
sourcepub fn as_ref(&self) -> Option<&RefType>
pub fn as_ref(&self) -> Option<&RefType>
Get the underlying reference type, if this value type is a reference type.
sourcepub fn unwrap_ref(&self) -> &RefType
pub fn unwrap_ref(&self) -> &RefType
Get the underlying reference type, panicking if this value type is not a reference type.
Trait Implementations§
source§impl From<ValType> for StorageType
impl From<ValType> for StorageType
Auto Trait Implementations§
impl Freeze for ValType
impl !RefUnwindSafe for ValType
impl Send for ValType
impl Sync for ValType
impl Unpin for ValType
impl !UnwindSafe for ValType
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