Struct hotg_rune_compiler::lowering::NameTable
source · [−]pub struct NameTable(_);
Methods from Deref<Target = IndexMap<Name, Entity>>
Return the number of key-value pairs in the map.
Computes in O(1) time.
Returns true if the map contains no elements.
Computes in O(1) time.
Return an iterator over the key-value pairs of the map, in their order
Return an iterator over the keys of the map, in their order
Return true
if an equivalent to key
exists in the map.
Computes in O(1) time (average).
Return a reference to the value stored for key
, if it is present,
else None
.
Computes in O(1) time (average).
Return references to the key-value pair stored for key
,
if it is present, else None
.
Computes in O(1) time (average).
Return item index, key and value
pub fn get_index_of<Q>(&self, key: &Q) -> Option<usize> where
Q: Hash + Equivalent<K> + ?Sized,
pub fn get_index_of<Q>(&self, key: &Q) -> Option<usize> where
Q: Hash + Equivalent<K> + ?Sized,
Return item index, if it exists in the map
Computes in O(1) time (average).
Get a key-value pair by index
Valid indices are 0 <= index < self.len()
Computes in O(1) time.
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
Auto Trait Implementations
impl RefUnwindSafe for NameTable
impl UnwindSafe for NameTable
Blanket Implementations
Mutably borrows from an owned value. Read more
type Storage = PackedStorage<T>
type Storage = PackedStorage<T>
The storage type required to hold all instances of this component in a world.
impl<T> Downcast for T where
T: Any,
impl<T> Downcast for T where
T: Any,
Convert Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
. Read more
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read more
Convert &Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s. Read more
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert &mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s. Read more