Skip to main content

SlotmapSparseSecondaryEntryExt

Trait SlotmapSparseSecondaryEntryExt 

Source
pub trait SlotmapSparseSecondaryEntryExt<'e, K, V>
where K: Key,
{ // Required methods fn insert(self, v: V); fn remove(self) -> (K, Option<V>); }

Required Methods§

Source

fn insert(self, v: V)

Source

fn remove(self) -> (K, Option<V>)

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<'e, K, V> EntryExt<'e, K, V> for Entry<'e, K, V>
where K: Key,