[−][src]Struct parity_wasm::elements::IndexMap
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.
Methods
impl<T> IndexMap<T>[src]
impl<T> IndexMap<T>pub fn with_capacity(capacity: usize) -> IndexMap<T>[src]
pub fn with_capacity(capacity: usize) -> IndexMap<T>Create an empty IndexMap, preallocating enough space to store
capacity entries without needing to reallocate the underlying memory.
pub fn clear(&mut self)[src]
pub fn clear(&mut self)Clear the map.
pub fn get(&self, idx: u32) -> Option<&T>[src]
pub fn get(&self, idx: u32) -> Option<&T>Return the name for the specified index, if it exists.
pub fn contains_key(&self, idx: u32) -> bool[src]
pub fn contains_key(&self, idx: u32) -> boolDoes the map contain an entry for the specified index?
pub fn insert(&mut self, idx: u32, value: T) -> Option<T>[src]
pub fn insert(&mut self, idx: u32, value: T) -> Option<T>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]
pub fn remove(&mut self, idx: u32) -> Option<T>Remove an item if present and return it.
pub fn len(&self) -> usize[src]
pub fn len(&self) -> usizeThe number of items in this map.
pub fn is_empty(&self) -> bool[src]
pub fn is_empty(&self) -> boolIs this map empty?
pub fn iter(&self) -> Iter<T>[src]
pub fn iter(&self) -> Iter<T>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]
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>, 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>, pub fn deserialize<R: Read>(
max_entry_space: usize,
rdr: &mut R
) -> Result<Self, Error>[src]
pub fn deserialize<R: Read>(
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> Serialize for IndexMap<T> where
T: Serialize,
Error: From<<T as Serialize>::Error>, [src]
impl<T> Serialize for IndexMap<T> where
T: Serialize,
Error: From<<T as Serialize>::Error>, type Error = Error
Serialization error produced by serialization routine.
fn serialize<W: Write>(self, wtr: &mut W) -> Result<(), Self::Error>[src]
fn serialize<W: Write>(self, wtr: &mut W) -> Result<(), Self::Error>Serialize type to serial i/o
impl<T> IntoIterator for IndexMap<T>[src]
impl<T> IntoIterator for IndexMap<T>type Item = (u32, T)
The type of the elements being iterated over.
type IntoIter = IntoIter<T>
Which kind of iterator are we turning this into?
fn into_iter(self) -> IntoIter<T>[src]
fn into_iter(self) -> IntoIter<T>Creates an iterator from a value. Read more
impl<'a, T: 'static> IntoIterator for &'a IndexMap<T>[src]
impl<'a, T: 'static> IntoIterator for &'a IndexMap<T>type Item = (u32, &'a T)
The type of the elements being iterated over.
type IntoIter = Iter<'a, T>
Which kind of iterator are we turning this into?
fn into_iter(self) -> Iter<'a, T>[src]
fn into_iter(self) -> Iter<'a, T>Creates an iterator from a value. Read more
impl<T: Clone> Clone for IndexMap<T>[src]
impl<T: Clone> Clone for IndexMap<T>fn clone(&self) -> IndexMap<T>[src]
fn clone(&self) -> IndexMap<T>Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl<T: Eq> Eq for IndexMap<T>[src]
impl<T: Eq> Eq for IndexMap<T>impl<T: Default> Default for IndexMap<T>[src]
impl<T: Default> Default for IndexMap<T>impl<T: PartialEq> PartialEq<IndexMap<T>> for IndexMap<T>[src]
impl<T: PartialEq> PartialEq<IndexMap<T>> for IndexMap<T>fn eq(&self, other: &IndexMap<T>) -> bool[src]
fn eq(&self, other: &IndexMap<T>) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
#[must_use]
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ne(&self, other: &Rhs) -> boolThis method tests for !=.
impl<T: Debug> Debug for IndexMap<T>[src]
impl<T: Debug> Debug for IndexMap<T>fn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl<T> FromIterator<(u32, T)> for IndexMap<T>[src]
impl<T> FromIterator<(u32, T)> for IndexMap<T>Auto Trait Implementations
Blanket Implementations
impl<T> From for T[src]
impl<T> From for Timpl<I> IntoIterator for I where
I: Iterator, [src]
impl<I> IntoIterator for I where
I: Iterator, type Item = <I as Iterator>::Item
The type of the elements being iterated over.
type IntoIter = I
Which kind of iterator are we turning this into?
fn into_iter(self) -> I[src]
fn into_iter(self) -> ICreates an iterator from a value. Read more
impl<T, U> Into for T where
U: From<T>, [src]
impl<T, U> Into for T where
U: From<T>, impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, type Owned = T
fn to_owned(&self) -> T[src]
fn to_owned(&self) -> TCreates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut T)[src]
fn clone_into(&self, target: &mut T)🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T, U> TryFrom for T where
T: From<U>, [src]
impl<T, U> TryFrom for T where
T: From<U>, type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>try_from)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized, [src]
impl<T> Borrow for T where
T: ?Sized, impl<T> Any for T where
T: 'static + ?Sized, [src]
impl<T> Any for T where
T: 'static + ?Sized, fn get_type_id(&self) -> TypeId[src]
fn get_type_id(&self) -> TypeId🔬 This is a nightly-only experimental API. (get_type_id)
this method will likely be replaced by an associated static
Gets the TypeId of self. Read more
impl<T> BorrowMut for T where
T: ?Sized, [src]
impl<T> BorrowMut for T where
T: ?Sized, fn borrow_mut(&mut self) -> &mut T[src]
fn borrow_mut(&mut self) -> &mut TMutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
impl<T, U> TryInto for T where
U: TryFrom<T>,