pub struct RuntimeTableIndex(/* private fields */);
Expand description
Index representing a table extracted from a wasm instance which is
stored in a VMComponentContext
. This is used to deduplicate references
to the same table when it’s only stored once in a VMComponentContext
.
This does not correspond to anything in the binary format for the component model.
Implementations§
Source§impl RuntimeTableIndex
impl RuntimeTableIndex
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 RuntimeTableIndex
impl Clone for RuntimeTableIndex
Source§fn clone(&self) -> RuntimeTableIndex
fn clone(&self) -> RuntimeTableIndex
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for RuntimeTableIndex
impl Debug for RuntimeTableIndex
Source§impl<'de> Deserialize<'de> for RuntimeTableIndex
impl<'de> Deserialize<'de> for RuntimeTableIndex
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 RuntimeTableIndex
impl EntityRef for RuntimeTableIndex
Source§impl Hash for RuntimeTableIndex
impl Hash for RuntimeTableIndex
Source§impl Ord for RuntimeTableIndex
impl Ord for RuntimeTableIndex
Source§fn cmp(&self, other: &RuntimeTableIndex) -> Ordering
fn cmp(&self, other: &RuntimeTableIndex) -> 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 RuntimeTableIndex
impl PartialEq for RuntimeTableIndex
Source§impl PartialOrd for RuntimeTableIndex
impl PartialOrd for RuntimeTableIndex
Source§impl ReservedValue for RuntimeTableIndex
impl ReservedValue for RuntimeTableIndex
Source§fn reserved_value() -> RuntimeTableIndex
fn reserved_value() -> RuntimeTableIndex
Source§fn is_reserved_value(&self) -> bool
fn is_reserved_value(&self) -> bool
Source§impl Serialize for RuntimeTableIndex
impl Serialize for RuntimeTableIndex
impl Copy for RuntimeTableIndex
impl Eq for RuntimeTableIndex
impl StructuralPartialEq for RuntimeTableIndex
Auto Trait Implementations§
impl Freeze for RuntimeTableIndex
impl RefUnwindSafe for RuntimeTableIndex
impl Send for RuntimeTableIndex
impl Sync for RuntimeTableIndex
impl Unpin for RuntimeTableIndex
impl UnwindSafe for RuntimeTableIndex
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,
§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
§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
key
and return true
if they are equal.