Trait fetsig::MutableVecEntry

source ·
pub trait MutableVecEntry<V> {
    // Required methods
    fn entry<'a, F>(&'a self, f: F) -> Entry<'a, V>
       where F: FnMut(&V) -> bool;
    fn entry_cloned<'a, F>(&'a self, f: F) -> EntryCloned<'a, V>
       where F: FnMut(&V) -> bool;
}

Required Methods§

source

fn entry<'a, F>(&'a self, f: F) -> Entry<'a, V>
where F: FnMut(&V) -> bool,

source

fn entry_cloned<'a, F>(&'a self, f: F) -> EntryCloned<'a, V>
where F: FnMut(&V) -> bool,

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<V> MutableVecEntry<V> for MutableVec<V>

source§

fn entry<'a, F>(&'a self, f: F) -> Entry<'a, V>
where F: FnMut(&V) -> bool,

source§

fn entry_cloned<'a, F>(&'a self, f: F) -> EntryCloned<'a, V>
where F: FnMut(&V) -> bool,

Implementors§