Trait map_split::Splittable4 [] [src]

pub trait Splittable4<'a, SplitType = ()> {
    type A: 'a;
    type B: 'a;
    type C: 'a;
    type D: 'a;
    fn split4(&'a self) -> (&'a Self::A, &'a Self::B, &'a Self::C, &'a Self::D);
    fn split4_mut(&'a mut self) -> (&'a mut Self::A, &'a mut Self::B, &'a mut Self::C, &'a mut Self::D);
}

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

Associated Types

Required Methods

Implementors