pub trait MutableVecEntry<V> {
// Required methods
fn entry<F>(&self, f: F) -> Entry<'_, V>
where F: FnMut(&V) -> bool;
fn entry_cloned<F>(&self, f: F) -> EntryCloned<'_, V>
where F: FnMut(&V) -> bool;
}Required Methods§
fn entry<F>(&self, f: F) -> Entry<'_, V>
fn entry_cloned<F>(&self, f: F) -> EntryCloned<'_, V>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.