Struct wasmtime_environ::BoxedSlice
source · pub struct BoxedSlice<K, V>where
K: EntityRef,{ /* private fields */ }
Expand description
A slice mapping K -> V
allocating dense entity references.
The BoxedSlice
data structure uses the dense index space to implement a map with a boxed
slice.
Implementations§
source§impl<K, V> BoxedSlice<K, V>where
K: EntityRef,
impl<K, V> BoxedSlice<K, V>where K: EntityRef,
sourcepub unsafe fn from_raw(raw: *mut [V]) -> BoxedSlice<K, V>
pub unsafe fn from_raw(raw: *mut [V]) -> BoxedSlice<K, V>
Create a new slice from a raw pointer. A safer way to create slices is
to use PrimaryMap::into_boxed_slice()
.
Safety
This relies on raw
pointing to a valid slice of V
s.
sourcepub fn get_mut(&mut self, k: K) -> Option<&mut V>
pub fn get_mut(&mut self, k: K) -> Option<&mut V>
Get the element at k
if it exists, mutable version.
sourcepub fn values_mut(&mut self) -> IterMut<'_, V> ⓘ
pub fn values_mut(&mut self) -> IterMut<'_, V> ⓘ
Iterate over all the values in this map, mutable edition.
Trait Implementations§
source§impl<K, V> Clone for BoxedSlice<K, V>where
K: Clone + EntityRef,
V: Clone,
impl<K, V> Clone for BoxedSlice<K, V>where K: Clone + EntityRef, V: Clone,
source§fn clone(&self) -> BoxedSlice<K, V>
fn clone(&self) -> BoxedSlice<K, V>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<K, V> Index<K> for BoxedSlice<K, V>where
K: EntityRef,
impl<K, V> Index<K> for BoxedSlice<K, V>where K: EntityRef,
Immutable indexing into a BoxedSlice
.
The indexed value must be in the map.
source§impl<K, V> IndexMut<K> for BoxedSlice<K, V>where
K: EntityRef,
impl<K, V> IndexMut<K> for BoxedSlice<K, V>where K: EntityRef,
Mutable indexing into a BoxedSlice
.