Trait SetMut

Source
pub trait SetMut<'a, V, Q>:
    Set<'a, V, Q>
    + CollectionMut
    + GetMut<&'a Q, Output = V>
    + Add<V, Output = bool>
where V: 'a + ?Sized + Borrow<Q>, Q: 'a + ?Sized,
{ }

Implementors§

Source§

impl<'a, V, Q, T> SetMut<'a, V, Q> for T
where T: 'a + Set<'a, V, Q> + CollectionMut + GetMut<&'a Q, Output = V> + Add<V, Output = bool>, V: 'a + ?Sized + Borrow<Q>, Q: 'a + ?Sized,