Trait map_split::Splittable6 [] [src]

pub trait Splittable6<'a, SplitType = ()> {
    type A: 'a;
    type B: 'a;
    type C: 'a;
    type D: 'a;
    type E: 'a;
    type F: 'a;
    fn split6(&'a self) -> (&'a Self::A, &'a Self::B, &'a Self::C, &'a Self::D, &'a Self::E, &'a Self::F);
    fn split6_mut(&'a mut self) -> (&'a mut Self::A, &'a mut Self::B, &'a mut Self::C, &'a mut Self::D, &'a mut Self::E, &'a mut Self::F);
}

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

Associated Types

Required Methods

Implementors