Enum wasmtime_environ::wasmparser::HeapType
source · pub enum HeapType {
Indexed(u32),
Func,
Extern,
Any,
None,
NoExtern,
NoFunc,
Eq,
Struct,
Array,
I31,
}
Expand description
A heap type from function references. When the proposal is disabled, Index is an invalid type.
Variants§
Indexed(u32)
User defined type at the given index.
Func
Untyped (any) function.
Extern
External heap type.
Any
The any
heap type. The common supertype (a.k.a. top) of all internal types.
None
The none
heap type. The common subtype (a.k.a. bottom) of all internal types.
NoExtern
The noextern
heap type. The common subtype (a.k.a. bottom) of all external types.
NoFunc
The nofunc
heap type. The common subtype (a.k.a. bottom) of all function types.
Eq
The eq
heap type. The common supertype of all referenceable types on which comparison
(ref.eq) is allowed.
Struct
The struct
heap type. The common supertype of all struct types.
Array
The array
heap type. The common supertype of all array types.
I31
The i31 heap type.
Trait Implementations§
source§impl<'a> FromReader<'a> for HeapType
impl<'a> FromReader<'a> for HeapType
source§fn from_reader(
reader: &mut BinaryReader<'a>
) -> Result<HeapType, BinaryReaderError>
fn from_reader( reader: &mut BinaryReader<'a> ) -> Result<HeapType, BinaryReaderError>
Attempts to read
Self
from the provided binary reader, returning an
error if it is unable to do so.source§impl PartialEq<HeapType> for HeapType
impl PartialEq<HeapType> for HeapType
impl Copy for HeapType
impl Eq for HeapType
impl StructuralEq for HeapType
impl StructuralPartialEq for HeapType
Auto Trait Implementations§
impl RefUnwindSafe for HeapType
impl Send for HeapType
impl Sync for HeapType
impl Unpin for HeapType
impl UnwindSafe for HeapType
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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§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 Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.