pub struct ModuleInternedTypeIndex(/* private fields */);
Expand description
A canonicalized type index for a type within a single WebAssembly module.
Note that this is deduplicated only at the level of a single WebAssembly module, not at the level of a whole store or engine. This means that these indices are only unique within the context of a single Wasm module, and therefore are not suitable for runtime type checks (which, in general, may involve entities defined in different modules).
Implementations§
Source§impl ModuleInternedTypeIndex
impl ModuleInternedTypeIndex
Sourcepub fn as_bits(self) -> u32
pub fn as_bits(self) -> u32
Return the raw bit encoding for this instance.
Warning: the raw bit encoding is opaque and has no
guaranteed correspondence to the entity’s index. It encodes the
entire state of this index value: either a valid index or an
invalid-index sentinel. The value returned by this method should
only be passed to from_bits
.
Sourcepub fn from_bits(x: u32) -> Self
pub fn from_bits(x: u32) -> Self
Create a new instance from the raw bit encoding.
Warning: the raw bit encoding is opaque and has no
guaranteed correspondence to the entity’s index. It encodes the
entire state of this index value: either a valid index or an
invalid-index sentinel. The value returned by this method should
only be given bits from as_bits
.
Trait Implementations§
Source§impl Clone for ModuleInternedTypeIndex
impl Clone for ModuleInternedTypeIndex
Source§fn clone(&self) -> ModuleInternedTypeIndex
fn clone(&self) -> ModuleInternedTypeIndex
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ModuleInternedTypeIndex
impl Debug for ModuleInternedTypeIndex
Source§impl<'de> Deserialize<'de> for ModuleInternedTypeIndex
impl<'de> Deserialize<'de> for ModuleInternedTypeIndex
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl EntityRef for ModuleInternedTypeIndex
impl EntityRef for ModuleInternedTypeIndex
Source§impl From<ModuleInternedTypeIndex> for EngineOrModuleTypeIndex
impl From<ModuleInternedTypeIndex> for EngineOrModuleTypeIndex
Source§fn from(i: ModuleInternedTypeIndex) -> Self
fn from(i: ModuleInternedTypeIndex) -> Self
Source§impl Hash for ModuleInternedTypeIndex
impl Hash for ModuleInternedTypeIndex
Source§impl Index<ModuleInternedTypeIndex> for ModuleTypes
impl Index<ModuleInternedTypeIndex> for ModuleTypes
Source§type Output = WasmSubType
type Output = WasmSubType
Source§fn index(&self, sig: ModuleInternedTypeIndex) -> &WasmSubType
fn index(&self, sig: ModuleInternedTypeIndex) -> &WasmSubType
container[index]
) operation. Read moreSource§impl Ord for ModuleInternedTypeIndex
impl Ord for ModuleInternedTypeIndex
Source§fn cmp(&self, other: &ModuleInternedTypeIndex) -> Ordering
fn cmp(&self, other: &ModuleInternedTypeIndex) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialEq for ModuleInternedTypeIndex
impl PartialEq for ModuleInternedTypeIndex
Source§impl PartialOrd for ModuleInternedTypeIndex
impl PartialOrd for ModuleInternedTypeIndex
Source§impl ReservedValue for ModuleInternedTypeIndex
impl ReservedValue for ModuleInternedTypeIndex
Source§fn reserved_value() -> ModuleInternedTypeIndex
fn reserved_value() -> ModuleInternedTypeIndex
Source§fn is_reserved_value(&self) -> bool
fn is_reserved_value(&self) -> bool
Source§impl Serialize for ModuleInternedTypeIndex
impl Serialize for ModuleInternedTypeIndex
impl Copy for ModuleInternedTypeIndex
impl Eq for ModuleInternedTypeIndex
impl StructuralPartialEq for ModuleInternedTypeIndex
Auto Trait Implementations§
impl Freeze for ModuleInternedTypeIndex
impl RefUnwindSafe for ModuleInternedTypeIndex
impl Send for ModuleInternedTypeIndex
impl Sync for ModuleInternedTypeIndex
impl Unpin for ModuleInternedTypeIndex
impl UnwindSafe for ModuleInternedTypeIndex
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§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.