Trait map_split::Splittable11
[−]
[src]
pub trait Splittable11<'a, SplitType = ()> { type A: 'a; type B: 'a; type C: 'a; type D: 'a; type E: 'a; type F: 'a; type G: 'a; type H: 'a; type I: 'a; type J: 'a; type K: 'a; fn split11(&'a self) -> (&'a Self::A, &'a Self::B, &'a Self::C, &'a Self::D, &'a Self::E, &'a Self::F, &'a Self::G, &'a Self::H, &'a Self::I, &'a Self::J, &'a Self::K); fn split11_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 mut Self::G, &'a mut Self::H, &'a mut Self::I, &'a mut Self::J, &'a mut Self::K); }
A type which can be split into disjoint references. SplitType allows a type to be split multiple
Associated Types
type A: 'a
type B: 'a
type C: 'a
type D: 'a
type E: 'a
type F: 'a
type G: 'a
type H: 'a
type I: 'a
type J: 'a
type K: 'a
Required Methods
fn split11(&'a self) -> (&'a Self::A, &'a Self::B, &'a Self::C, &'a Self::D, &'a Self::E, &'a Self::F, &'a Self::G, &'a Self::H, &'a Self::I, &'a Self::J, &'a Self::K)
fn split11_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 mut Self::G, &'a mut Self::H, &'a mut Self::I, &'a mut Self::J, &'a mut Self::K)
Implementors
impl<'a, SplitType, T: Splittable12<'a, SplitType>> Splittable11<'a, SplitType> for T