Struct wasmtime_environ::SignatureIndex 
source · pub struct SignatureIndex(_);Expand description
Index type of a signature (imported or defined) inside the WebAssembly module.
Implementations§
source§impl SignatureIndex
 
impl SignatureIndex
sourcepub fn from_u32(x: u32) -> SignatureIndex
 
pub fn from_u32(x: u32) -> SignatureIndex
Create a new instance from a u32.
sourcepub fn from_bits(x: u32) -> SignatureIndex
 
pub fn from_bits(x: u32) -> SignatureIndex
Create a new instance from the raw bit encoding.
Trait Implementations§
source§impl Clone for SignatureIndex
 
impl Clone for SignatureIndex
source§fn clone(&self) -> SignatureIndex
 
fn clone(&self) -> SignatureIndex
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 SignatureIndex
 
impl Debug for SignatureIndex
source§impl<'de> Deserialize<'de> for SignatureIndex
 
impl<'de> Deserialize<'de> for SignatureIndex
source§fn deserialize<__D>(
    __deserializer: __D
) -> Result<SignatureIndex, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(
    __deserializer: __D
) -> Result<SignatureIndex, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl EntityRef for SignatureIndex
 
impl EntityRef for SignatureIndex
source§impl Hash for SignatureIndex
 
impl Hash for SignatureIndex
source§impl Index<SignatureIndex> for ModuleTypes
 
impl Index<SignatureIndex> for ModuleTypes
§type Output = WasmFuncType
 
type Output = WasmFuncType
The returned type after indexing.
source§fn index(&self, sig: SignatureIndex) -> &WasmFuncType
 
fn index(&self, sig: SignatureIndex) -> &WasmFuncType
Performs the indexing (
container[index]) operation. Read moresource§impl Ord for SignatureIndex
 
impl Ord for SignatureIndex
source§fn cmp(&self, other: &SignatureIndex) -> Ordering
 
fn cmp(&self, other: &SignatureIndex) -> 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<SignatureIndex> for SignatureIndex
 
impl PartialEq<SignatureIndex> for SignatureIndex
source§fn eq(&self, other: &SignatureIndex) -> bool
 
fn eq(&self, other: &SignatureIndex) -> bool
source§impl PartialOrd<SignatureIndex> for SignatureIndex
 
impl PartialOrd<SignatureIndex> for SignatureIndex
source§fn partial_cmp(&self, other: &SignatureIndex) -> Option<Ordering>
 
fn partial_cmp(&self, other: &SignatureIndex) -> 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 SignatureIndex
 
impl ReservedValue for SignatureIndex
source§fn reserved_value() -> SignatureIndex
 
fn reserved_value() -> SignatureIndex
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 SignatureIndex
 
impl Serialize for SignatureIndex
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 SignatureIndex
impl Eq for SignatureIndex
impl StructuralEq for SignatureIndex
impl StructuralPartialEq for SignatureIndex
Auto Trait Implementations§
impl RefUnwindSafe for SignatureIndex
impl Send for SignatureIndex
impl Sync for SignatureIndex
impl Unpin for SignatureIndex
impl UnwindSafe for SignatureIndex
Blanket Implementations§
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.