Trait map_split::Splittable3 [] [src]

pub trait Splittable3<'a, SplitType = ()> {
    type A: 'a;
    type B: 'a;
    type C: 'a;
    fn split3(&'a self) -> (&'a Self::A, &'a Self::B, &'a Self::C);
    fn split3_mut(&'a mut self) -> (&'a mut Self::A, &'a mut Self::B, &'a mut Self::C);
}

A type which can be split into disjoint references. SplitType allows a type to be split multiple

Associated Types

Required Methods

Implementors