Trait GetDistinctMut

Source
pub trait GetDistinctMut<I> {
    type Output;

    // Required method
    fn get_distinct_mut(self, index: I) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn get_distinct_mut(self, index: I) -> Self::Output

Implementations on Foreign Types§

Source§

impl<'a, T> GetDistinctMut<(usize, usize)> for &'a mut [T]

Source§

impl<'a, T> GetDistinctMut<(usize, usize, usize)> for &'a mut [T]

Implementors§