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§

source§

impl<K: IndexableKey, V> FixedMap<K, V>

source

pub fn new() -> FixedMap<K, V>

source

pub fn insert(&mut self, key: K, value: V)

source

pub fn get(&self, key: &K) -> Option<&V>

source

pub fn get_mut(&mut self, key: &K) -> Option<&mut V>

source

pub fn contains_key(&self, key: &K) -> bool

source

pub fn remove(&mut self, key: &K) -> Option<V>

source

pub fn values(&self) -> Flatten<Iter<'_, Option<V>>>

Trait Implementations§

source§

impl<K: Clone + IndexableKey, V: Clone> Clone for FixedMap<K, V>

source§

fn clone(&self) -> FixedMap<K, V>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<K: IndexableKey, V> Default for FixedMap<K, V>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'de, K: IndexableKey, V> Deserialize<'de> for FixedMap<K, V>
where V: Deserialize<'de>,

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<K: IndexableKey, V> Index<&K> for FixedMap<K, V>

§

type Output = V

The returned type after indexing.
source§

fn index(&self, key: &K) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl<K: IndexableKey, V> Serialize for FixedMap<K, V>
where V: Serialize,

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

§

impl<K, V> RefUnwindSafe for FixedMap<K, V>

§

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§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,