Enum wasmtime_environ::EntityIndex [−][src]
pub enum EntityIndex {
Function(FuncIndex),
Table(TableIndex),
Memory(MemoryIndex),
Global(GlobalIndex),
Module(ModuleIndex),
Instance(InstanceIndex),
}Expand description
An index of an entity.
Variants
Function(FuncIndex)Function index.
Tuple Fields of Function
0: FuncIndexTable(TableIndex)Table index.
Tuple Fields of Table
0: TableIndexMemory(MemoryIndex)Memory index.
Tuple Fields of Memory
0: MemoryIndexGlobal(GlobalIndex)Global index.
Tuple Fields of Global
0: GlobalIndexModule(ModuleIndex)Module index.
Tuple Fields of Module
0: ModuleIndexInstance(InstanceIndex)Instance index.
Tuple Fields of Instance
Trait Implementations
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<EntityIndex, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<EntityIndex, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
pub 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
Auto Trait Implementations
impl RefUnwindSafe for EntityIndex
impl Send for EntityIndex
impl Sync for EntityIndex
impl Unpin for EntityIndex
impl UnwindSafe for EntityIndex
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key and return true if they are equal.