pub struct BoxedSlice<K, V>where
    K: EntityRef,{
    elems: Box<[V]>,
    unused: PhantomData<K>,
}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.
Fields§
§elems: Box<[V]>§unused: PhantomData<K>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]) -> Self
 
pub unsafe fn from_raw(raw: *mut [V]) -> Self
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 Vs.
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> Clone for BoxedSlice<K, V>
 
impl<K, V: Clone> Clone for BoxedSlice<K, V>
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: Debug> Debug for BoxedSlice<K, V>
 
impl<K, V: Debug> Debug for BoxedSlice<K, V>
Source§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.
 
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,
Mutable indexing into a BoxedSlice.
 
impl<K, V> IndexMut<K> for BoxedSlice<K, V>where
    K: EntityRef,
Mutable indexing into a BoxedSlice.
Source§impl<'a, K, V> IntoIterator for &'a BoxedSlice<K, V>where
    K: EntityRef,
 
impl<'a, K, V> IntoIterator for &'a BoxedSlice<K, V>where
    K: EntityRef,
Source§impl<'a, K, V> IntoIterator for &'a mut BoxedSlice<K, V>where
    K: EntityRef,
 
impl<'a, K, V> IntoIterator for &'a mut BoxedSlice<K, V>where
    K: EntityRef,
Auto Trait Implementations§
impl<K, V> Freeze for BoxedSlice<K, V>
impl<K, V> RefUnwindSafe for BoxedSlice<K, V>where
    K: RefUnwindSafe,
    V: RefUnwindSafe,
impl<K, V> Send for BoxedSlice<K, V>
impl<K, V> Sync for BoxedSlice<K, V>
impl<K, V> Unpin for BoxedSlice<K, V>where
    K: Unpin,
impl<K, V> UnwindSafe for BoxedSlice<K, V>where
    K: UnwindSafe,
    V: UnwindSafe,
Blanket Implementations§
§impl<T> ArchivePointee for T
 
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
 
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
§fn pointer_metadata(
    _: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
 
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
§impl<T> LayoutRaw for T
 
impl<T> LayoutRaw for T
§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
 
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Returns the layout of the type.