Struct wasmtime_environ::CallIndirectSiteIndex
source · pub struct CallIndirectSiteIndex(/* private fields */);
Expand description
Index of a call_indirect
instruction in a module, used for
caching that callsite’s target in the VMContext.
Implementations§
source§impl CallIndirectSiteIndex
impl CallIndirectSiteIndex
sourcepub fn from_u32(x: u32) -> CallIndirectSiteIndex
pub fn from_u32(x: u32) -> CallIndirectSiteIndex
Create a new instance from a u32
.
sourcepub fn from_bits(x: u32) -> CallIndirectSiteIndex
pub fn from_bits(x: u32) -> CallIndirectSiteIndex
Create a new instance from the raw bit encoding.
Trait Implementations§
source§impl Clone for CallIndirectSiteIndex
impl Clone for CallIndirectSiteIndex
source§fn clone(&self) -> CallIndirectSiteIndex
fn clone(&self) -> CallIndirectSiteIndex
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CallIndirectSiteIndex
impl Debug for CallIndirectSiteIndex
source§impl<'de> Deserialize<'de> for CallIndirectSiteIndex
impl<'de> Deserialize<'de> for CallIndirectSiteIndex
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<CallIndirectSiteIndex, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<CallIndirectSiteIndex, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl EntityRef for CallIndirectSiteIndex
impl EntityRef for CallIndirectSiteIndex
source§impl Hash for CallIndirectSiteIndex
impl Hash for CallIndirectSiteIndex
source§impl Ord for CallIndirectSiteIndex
impl Ord for CallIndirectSiteIndex
source§fn cmp(&self, other: &CallIndirectSiteIndex) -> Ordering
fn cmp(&self, other: &CallIndirectSiteIndex) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for CallIndirectSiteIndex
impl PartialEq for CallIndirectSiteIndex
source§fn eq(&self, other: &CallIndirectSiteIndex) -> bool
fn eq(&self, other: &CallIndirectSiteIndex) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for CallIndirectSiteIndex
impl PartialOrd for CallIndirectSiteIndex
source§fn partial_cmp(&self, other: &CallIndirectSiteIndex) -> Option<Ordering>
fn partial_cmp(&self, other: &CallIndirectSiteIndex) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl ReservedValue for CallIndirectSiteIndex
impl ReservedValue for CallIndirectSiteIndex
source§fn reserved_value() -> CallIndirectSiteIndex
fn reserved_value() -> CallIndirectSiteIndex
Create an instance of the reserved value.
source§fn is_reserved_value(&self) -> bool
fn is_reserved_value(&self) -> bool
Checks whether value is the reserved one.
source§impl Serialize for CallIndirectSiteIndex
impl Serialize for CallIndirectSiteIndex
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for CallIndirectSiteIndex
impl Eq for CallIndirectSiteIndex
impl StructuralPartialEq for CallIndirectSiteIndex
Auto Trait Implementations§
impl Freeze for CallIndirectSiteIndex
impl RefUnwindSafe for CallIndirectSiteIndex
impl Send for CallIndirectSiteIndex
impl Sync for CallIndirectSiteIndex
impl Unpin for CallIndirectSiteIndex
impl UnwindSafe for CallIndirectSiteIndex
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> 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
Compare self to
key
and return true
if they are equal.