pub struct FixedMap<K: IndexableKey, V> {
inner: Vec<Option<V>>,
key_type: PhantomData<K>,
}
Expand description
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
sourceimpl<K: IndexableKey, V> FixedMap<K, V>
impl<K: IndexableKey, V> FixedMap<K, V>
pub fn new() -> FixedMap<K, V>
pub fn insert(&mut self, key: K, value: V)
pub fn get(&self, key: &K) -> Option<&V>
pub fn get_mut(&mut self, key: &K) -> Option<&mut V>
pub fn contains_key(&self, key: &K) -> bool
pub fn remove(&mut self, key: &K) -> Option<V>
pub fn values(&self) -> Flatten<Iter<'_, Option<V>>>
Trait Implementations
sourceimpl<K: IndexableKey, V> Default for FixedMap<K, V>
impl<K: IndexableKey, V> Default for FixedMap<K, V>
sourceimpl<'de, K: IndexableKey, V> Deserialize<'de> for FixedMap<K, V> where
V: Deserialize<'de>,
impl<'de, K: IndexableKey, V> Deserialize<'de> for FixedMap<K, V> where
V: Deserialize<'de>,
sourcefn 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
sourceimpl<K: IndexableKey, V> Index<&'_ K> for FixedMap<K, V>
impl<K: IndexableKey, V> Index<&'_ K> for FixedMap<K, V>
Auto Trait Implementations
impl<K, V> RefUnwindSafe for FixedMap<K, V> where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for FixedMap<K, V> where
K: Send,
V: Send,
impl<K, V> Sync for FixedMap<K, V> where
K: Sync,
V: Sync,
impl<K, V> Unpin for FixedMap<K, V> where
K: Unpin,
V: Unpin,
impl<K, V> UnwindSafe for FixedMap<K, V> where
K: UnwindSafe,
V: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more