Enum wasmtime_types::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: FuncIndex
Table(TableIndex)
Table index.
Tuple Fields of Table
0: TableIndex
Memory(MemoryIndex)
Memory index.
Tuple Fields of Memory
0: MemoryIndex
Global(GlobalIndex)
Global index.
Tuple Fields of Global
0: GlobalIndex
Module(ModuleIndex)
Module index.
Tuple Fields of Module
0: ModuleIndex
Instance(InstanceIndex)
Instance index.
Tuple Fields of Instance
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::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
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