Trait map_split::Splittable5
[−]
[src]
pub trait Splittable5<'a, SplitType = ()> { type A: 'a; type B: 'a; type C: 'a; type D: 'a; type E: 'a; fn split5(&'a self) -> (&'a Self::A, &'a Self::B, &'a Self::C, &'a Self::D, &'a Self::E); fn split5_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 type which can be split into disjoint references. SplitType allows a type to be split multiple
Associated Types
Required Methods
fn split5(&'a self) -> (&'a Self::A, &'a Self::B, &'a Self::C, &'a Self::D, &'a Self::E)
fn split5_mut(&'a mut self) -> (&'a mut Self::A, &'a mut Self::B, &'a mut Self::C, &'a mut Self::D, &'a mut Self::E)
Implementors
impl<'a, SplitType, T: Splittable6<'a, SplitType>> Splittable5<'a, SplitType> for T