pub struct PackedIndex(/* private fields */);Expand description
A packed representation of a type index.
This type is morally an enum of either:
-
An index into a Wasm module’s type space.
-
A
CoreTypeIdidentifier. -
An index into a recursion group’s elements.
The latter two variants are canonical while the first is not. Reading raw types will produce (1), while working with types after validation will produce (2) and (3).
Implementations§
Source§impl PackedIndex
impl PackedIndex
Sourcepub fn from_module_index(index: u32) -> Option<Self>
pub fn from_module_index(index: u32) -> Option<Self>
Construct a PackedIndex from an index into a module’s types space.
Sourcepub fn from_rec_group_index(index: u32) -> Option<Self>
pub fn from_rec_group_index(index: u32) -> Option<Self>
Construct a PackedIndex from an index into the index’s containing
recursion group.
Sourcepub fn from_id(id: CoreTypeId) -> Option<Self>
pub fn from_id(id: CoreTypeId) -> Option<Self>
Construct a PackedIndex from the given CoreTypeId.
Sourcepub fn is_canonical(&self) -> bool
pub fn is_canonical(&self) -> bool
Is this index in canonical form?
Sourcepub fn unpack(&self) -> UnpackedIndex
pub fn unpack(&self) -> UnpackedIndex
Uncompress this packed index into an actual enum that can be matched
on.
Sourcepub fn as_module_index(&self) -> Option<u32>
pub fn as_module_index(&self) -> Option<u32>
Get the underlying index into a module’s types space, if any.
Sourcepub fn as_rec_group_index(&self) -> Option<u32>
pub fn as_rec_group_index(&self) -> Option<u32>
Get the underlying index into the containing recursion group, if any.
Sourcepub fn as_core_type_id(&self) -> Option<CoreTypeId>
pub fn as_core_type_id(&self) -> Option<CoreTypeId>
Get the underlying CoreTypeId, if any.
Trait Implementations§
Source§impl Clone for PackedIndex
impl Clone for PackedIndex
Source§fn clone(&self) -> PackedIndex
fn clone(&self) -> PackedIndex
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more