data_structure_traits 0.1.12

data structure collection traits
Documentation
use core::borrow::Borrow;

use super::{Add, CollectionMut, GetMut, Set};

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,
{
}

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,
{}