Enum cranelift_wasm::EngineOrModuleTypeIndex

source ·
pub enum EngineOrModuleTypeIndex {
    Engine(VMSharedTypeIndex),
    Module(ModuleInternedTypeIndex),
    RecGroup(RecGroupRelativeTypeIndex),
}
Expand description

An interned type index, either at the module or engine level.

Roughly equivalent to wasmparser::UnpackedIndex, although doesn’t have to concern itself with recursion-group-local indices.

Variants§

§

Engine(VMSharedTypeIndex)

An index within an engine, canonicalized among all modules that can interact with each other.

§

Module(ModuleInternedTypeIndex)

An index within the current Wasm module, canonicalized within just this current module.

§

RecGroup(RecGroupRelativeTypeIndex)

An index within the containing type’s rec group. This is only used when hashing and canonicalizing rec groups, and should never appear outside of the engine’s type registry.

Implementations§

source§

impl EngineOrModuleTypeIndex

source

pub fn is_engine_type_index(self) -> bool

Is this an engine-level type index?

source

pub fn as_engine_type_index(self) -> Option<VMSharedTypeIndex>

Get the underlying engine-level type index, if any.

source

pub fn unwrap_engine_type_index(self) -> VMSharedTypeIndex

Get the underlying engine-level type index, or panic.

source

pub fn is_module_type_index(self) -> bool

Is this an module-level type index?

source

pub fn as_module_type_index(self) -> Option<ModuleInternedTypeIndex>

Get the underlying module-level type index, if any.

source

pub fn unwrap_module_type_index(self) -> ModuleInternedTypeIndex

Get the underlying module-level type index, or panic.

source

pub fn is_rec_group_type_index(self) -> bool

Is this an recgroup-level type index?

source

pub fn as_rec_group_type_index(self) -> Option<RecGroupRelativeTypeIndex>

Get the underlying recgroup-level type index, if any.

source

pub fn unwrap_rec_group_type_index(self) -> RecGroupRelativeTypeIndex

Get the underlying module-level type index, or panic.

Trait Implementations§

source§

impl Clone for EngineOrModuleTypeIndex

source§

fn clone(&self) -> EngineOrModuleTypeIndex

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for EngineOrModuleTypeIndex

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for EngineOrModuleTypeIndex

source§

fn deserialize<__D>( __deserializer: __D ) -> Result<EngineOrModuleTypeIndex, <__D as Deserializer<'de>>::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Display for EngineOrModuleTypeIndex

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl From<ModuleInternedTypeIndex> for EngineOrModuleTypeIndex

source§

fn from(i: ModuleInternedTypeIndex) -> EngineOrModuleTypeIndex

Converts to this type from the input type.
source§

impl Hash for EngineOrModuleTypeIndex

source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for EngineOrModuleTypeIndex

source§

fn eq(&self, other: &EngineOrModuleTypeIndex) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for EngineOrModuleTypeIndex

source§

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
source§

impl Copy for EngineOrModuleTypeIndex

source§

impl Eq for EngineOrModuleTypeIndex

source§

impl StructuralPartialEq for EngineOrModuleTypeIndex

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,