Struct abstutil::FixedMap [−][src]
pub struct FixedMap<K: IndexableKey, V> { inner: Vec<Option<V>>, key_type: PhantomData<K>, }
A drop-in replacement for BTreeMap
, where the keys have the property of being array indices.
Some values may be missing. Much more efficient at operations on individual objects, because
it just becomes a simple array lookup.
Fields
inner: Vec<Option<V>>
key_type: PhantomData<K>
Implementations
impl<K: IndexableKey, V> FixedMap<K, V>
[src]
impl<K: IndexableKey, V> FixedMap<K, V>
[src]pub fn new() -> FixedMap<K, V>
[src]
pub fn insert(&mut self, key: K, value: V)
[src]
pub fn get(&self, key: &K) -> Option<&V>
[src]
pub fn get_mut(&mut self, key: &K) -> Option<&mut V>
[src]
pub fn contains_key(&self, key: &K) -> bool
[src]
pub fn remove(&mut self, key: &K) -> Option<V>
[src]
pub fn values(&self) -> Flatten<Iter<'_, Option<V>>>
[src]
Trait Implementations
impl<'de, K: IndexableKey, V> Deserialize<'de> for FixedMap<K, V> where
V: Deserialize<'de>,
[src]
impl<'de, K: IndexableKey, V> Deserialize<'de> for FixedMap<K, V> where
V: Deserialize<'de>,
[src]fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
impl<K: IndexableKey, V> Index<&'_ K> for FixedMap<K, V>
[src]
impl<K: IndexableKey, V> Index<&'_ K> for FixedMap<K, V>
[src]Auto Trait Implementations
impl<K, V> RefUnwindSafe for FixedMap<K, V> where
K: RefUnwindSafe,
V: RefUnwindSafe,
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for FixedMap<K, V> where
K: Send,
V: Send,
K: Send,
V: Send,
impl<K, V> Sync for FixedMap<K, V> where
K: Sync,
V: Sync,
K: Sync,
V: Sync,
impl<K, V> Unpin for FixedMap<K, V> where
K: Unpin,
V: Unpin,
K: Unpin,
V: Unpin,
impl<K, V> UnwindSafe for FixedMap<K, V> where
K: UnwindSafe,
V: UnwindSafe,
K: UnwindSafe,
V: UnwindSafe,