Struct wasmtime_environ::OwnedMemoryIndex
source · pub struct OwnedMemoryIndex(_);
Expand description
Index type of a defined memory inside the WebAssembly module.
Implementations§
source§impl OwnedMemoryIndex
impl OwnedMemoryIndex
sourcepub fn from_u32(x: u32) -> OwnedMemoryIndex
pub fn from_u32(x: u32) -> OwnedMemoryIndex
Create a new instance from a u32
.
sourcepub fn from_bits(x: u32) -> OwnedMemoryIndex
pub fn from_bits(x: u32) -> OwnedMemoryIndex
Create a new instance from the raw bit encoding.
Trait Implementations§
source§impl Clone for OwnedMemoryIndex
impl Clone for OwnedMemoryIndex
source§fn clone(&self) -> OwnedMemoryIndex
fn clone(&self) -> OwnedMemoryIndex
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 OwnedMemoryIndex
impl Debug for OwnedMemoryIndex
source§impl<'de> Deserialize<'de> for OwnedMemoryIndex
impl<'de> Deserialize<'de> for OwnedMemoryIndex
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<OwnedMemoryIndex, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<OwnedMemoryIndex, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl EntityRef for OwnedMemoryIndex
impl EntityRef for OwnedMemoryIndex
source§impl Hash for OwnedMemoryIndex
impl Hash for OwnedMemoryIndex
source§impl Ord for OwnedMemoryIndex
impl Ord for OwnedMemoryIndex
source§fn cmp(&self, other: &OwnedMemoryIndex) -> Ordering
fn cmp(&self, other: &OwnedMemoryIndex) -> 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<OwnedMemoryIndex> for OwnedMemoryIndex
impl PartialEq<OwnedMemoryIndex> for OwnedMemoryIndex
source§fn eq(&self, other: &OwnedMemoryIndex) -> bool
fn eq(&self, other: &OwnedMemoryIndex) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<OwnedMemoryIndex> for OwnedMemoryIndex
impl PartialOrd<OwnedMemoryIndex> for OwnedMemoryIndex
source§fn partial_cmp(&self, other: &OwnedMemoryIndex) -> Option<Ordering>
fn partial_cmp(&self, other: &OwnedMemoryIndex) -> 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 OwnedMemoryIndex
impl ReservedValue for OwnedMemoryIndex
source§fn reserved_value() -> OwnedMemoryIndex
fn reserved_value() -> OwnedMemoryIndex
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 OwnedMemoryIndex
impl Serialize for OwnedMemoryIndex
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 OwnedMemoryIndex
impl Eq for OwnedMemoryIndex
impl StructuralEq for OwnedMemoryIndex
impl StructuralPartialEq for OwnedMemoryIndex
Auto Trait Implementations§
impl RefUnwindSafe for OwnedMemoryIndex
impl Send for OwnedMemoryIndex
impl Sync for OwnedMemoryIndex
impl Unpin for OwnedMemoryIndex
impl UnwindSafe for OwnedMemoryIndex
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<T> CallHasher for Twhere
T: Hash + ?Sized,
impl<T> CallHasher for Twhere T: Hash + ?Sized,
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.