Struct parity_wasm::elements::IndexMap [−][src]
pub struct IndexMap<T> { /* fields omitted */ }
A map from non-contiguous u32
keys to values of type T
, which is
serialized and deserialized ascending order of the keys. Normally used for
relative dense maps with occasional “holes”, and stored as an array.
SECURITY WARNING: This code is currently subject to a denial of service
attack if you create a map containing the key u32::MAX
, which should never
happen in normal data. It would be pretty easy to provide a safe
deserializing mechanism which addressed this problem.
Implementations
impl<T> IndexMap<T>
[src]
impl<T> IndexMap<T>
[src]pub fn with_capacity(capacity: usize) -> IndexMap<T>
[src]
Create an empty IndexMap
, preallocating enough space to store
capacity
entries without needing to reallocate the underlying memory.
pub fn clear(&mut self)
[src]
Clear the map.
pub fn get(&self, idx: u32) -> Option<&T>
[src]
Return the name for the specified index, if it exists.
pub fn contains_key(&self, idx: u32) -> bool
[src]
Does the map contain an entry for the specified index?
pub fn insert(&mut self, idx: u32, value: T) -> Option<T>
[src]
Insert a name into our map, returning the existing value if present.
Note: This API is designed for reasonably dense indices based on valid
data. Inserting a huge idx
will use up a lot of RAM, and this function
will not try to protect you against that.
pub fn remove(&mut self, idx: u32) -> Option<T>
[src]
Remove an item if present and return it.
pub fn len(&self) -> usize
[src]
The number of items in this map.
pub fn is_empty(&self) -> bool
[src]
Is this map empty?
pub fn iter(&self) -> Iter<'_, T>
[src]
Create a non-consuming iterator over this IndexMap
’s keys and values.
pub fn deserialize_with<R, F>(
max_entry_space: usize,
deserialize_value: &F,
rdr: &mut R
) -> Result<IndexMap<T>, Error> where
R: Read,
F: Fn(u32, &mut R) -> Result<T, Error>,
[src]
max_entry_space: usize,
deserialize_value: &F,
rdr: &mut R
) -> Result<IndexMap<T>, Error> where
R: Read,
F: Fn(u32, &mut R) -> Result<T, Error>,
Custom deserialization routine.
We will allocate an underlying array no larger than max_entry_space
to
hold the data, so the maximum index must be less than max_entry_space
.
This prevents mallicious *.wasm files from having a single entry with
the index u32::MAX
, which would consume far too much memory.
The deserialize_value
function will be passed the index of the value
being deserialized, and must deserialize the value.
impl<T: Deserialize> IndexMap<T> where
T: Deserialize,
Error: From<<T as Deserialize>::Error>,
[src]
impl<T: Deserialize> IndexMap<T> where
T: Deserialize,
Error: From<<T as Deserialize>::Error>,
[src]pub fn deserialize<R: Read>(
max_entry_space: usize,
rdr: &mut R
) -> Result<Self, Error>
[src]
max_entry_space: usize,
rdr: &mut R
) -> Result<Self, Error>
Deserialize a map containing simple values that support Deserialize
.
We will allocate an underlying array no larger than max_entry_space
to
hold the data, so the maximum index must be less than max_entry_space
.
Trait Implementations
impl<T> IntoIterator for IndexMap<T>
[src]
impl<T> IntoIterator for IndexMap<T>
[src]impl<'a, T: 'static> IntoIterator for &'a IndexMap<T>
[src]
impl<'a, T: 'static> IntoIterator for &'a IndexMap<T>
[src]impl<T: Eq> Eq for IndexMap<T>
[src]
Auto Trait Implementations
impl<T> RefUnwindSafe for IndexMap<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for IndexMap<T> where
T: Send,
T: Send,
impl<T> Sync for IndexMap<T> where
T: Sync,
T: Sync,
impl<T> Unpin for IndexMap<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for IndexMap<T> where
T: UnwindSafe,
T: UnwindSafe,