[][src]Enum sum::Sum12

pub enum Sum12<A, B, C, D, E, F, G, H, I, J, K, L> {
    A(A),
    B(B),
    C(C),
    D(D),
    E(E),
    F(F),
    G(G),
    H(H),
    I(I),
    J(J),
    K(K),
    L(L),
}

Variants

A(A)
B(B)
C(C)
D(D)
E(E)
F(F)
G(G)
H(H)
I(I)
J(J)
K(K)
L(L)

Implementations

impl<A, B, C, D, E, F, G, H, I, J, K, L> Sum12<A, B, C, D, E, F, G, H, I, J, K, L>[src]

pub fn is_a(&self) -> bool[src]

pub fn a(self) -> Option<A>[src]

pub fn is_b(&self) -> bool[src]

pub fn b(self) -> Option<B>[src]

pub fn is_c(&self) -> bool[src]

pub fn c(self) -> Option<C>[src]

pub fn is_d(&self) -> bool[src]

pub fn d(self) -> Option<D>[src]

pub fn is_e(&self) -> bool[src]

pub fn e(self) -> Option<E>[src]

pub fn is_f(&self) -> bool[src]

pub fn f(self) -> Option<F>[src]

pub fn is_g(&self) -> bool[src]

pub fn g(self) -> Option<G>[src]

pub fn is_h(&self) -> bool[src]

pub fn h(self) -> Option<H>[src]

pub fn is_i(&self) -> bool[src]

pub fn i(self) -> Option<I>[src]

pub fn is_j(&self) -> bool[src]

pub fn j(self) -> Option<J>[src]

pub fn is_k(&self) -> bool[src]

pub fn k(self) -> Option<K>[src]

pub fn is_l(&self) -> bool[src]

pub fn l(self) -> Option<L>[src]

pub fn as_ref(&self) -> Sum12<&A, &B, &C, &D, &E, &F, &G, &H, &I, &J, &K, &L>

Important traits for Sum12<A, B, C, D, E, F, G, H, I, J, K, L>

impl<A, B, C, D, E, F, G, H, I, J, K, L> Iterator for Sum12<A, B, C, D, E, F, G, H, I, J, K, L> where
    A: Iterator,
    B: Iterator<Item = A::Item>,
    C: Iterator<Item = A::Item>,
    D: Iterator<Item = A::Item>,
    E: Iterator<Item = A::Item>,
    F: Iterator<Item = A::Item>,
    G: Iterator<Item = A::Item>,
    H: Iterator<Item = A::Item>,
    I: Iterator<Item = A::Item>,
    J: Iterator<Item = A::Item>,
    K: Iterator<Item = A::Item>,
    L: Iterator<Item = A::Item>, 
type Item = A::Item;impl<A, B, C, D, E, F, G, H, I, J, K, L> Future for Sum12<A, B, C, D, E, F, G, H, I, J, K, L> where
    A: Future,
    B: Future<Output = A::Output>,
    C: Future<Output = A::Output>,
    D: Future<Output = A::Output>,
    E: Future<Output = A::Output>,
    F: Future<Output = A::Output>,
    G: Future<Output = A::Output>,
    H: Future<Output = A::Output>,
    I: Future<Output = A::Output>,
    J: Future<Output = A::Output>,
    K: Future<Output = A::Output>,
    L: Future<Output = A::Output>, 
type Output = A::Output;
[src]

pub fn as_mut(
    &mut self
) -> Sum12<&mut A, &mut B, &mut C, &mut D, &mut E, &mut F, &mut G, &mut H, &mut I, &mut J, &mut K, &mut L>

Important traits for Sum12<A, B, C, D, E, F, G, H, I, J, K, L>

impl<A, B, C, D, E, F, G, H, I, J, K, L> Iterator for Sum12<A, B, C, D, E, F, G, H, I, J, K, L> where
    A: Iterator,
    B: Iterator<Item = A::Item>,
    C: Iterator<Item = A::Item>,
    D: Iterator<Item = A::Item>,
    E: Iterator<Item = A::Item>,
    F: Iterator<Item = A::Item>,
    G: Iterator<Item = A::Item>,
    H: Iterator<Item = A::Item>,
    I: Iterator<Item = A::Item>,
    J: Iterator<Item = A::Item>,
    K: Iterator<Item = A::Item>,
    L: Iterator<Item = A::Item>, 
type Item = A::Item;impl<A, B, C, D, E, F, G, H, I, J, K, L> Future for Sum12<A, B, C, D, E, F, G, H, I, J, K, L> where
    A: Future,
    B: Future<Output = A::Output>,
    C: Future<Output = A::Output>,
    D: Future<Output = A::Output>,
    E: Future<Output = A::Output>,
    F: Future<Output = A::Output>,
    G: Future<Output = A::Output>,
    H: Future<Output = A::Output>,
    I: Future<Output = A::Output>,
    J: Future<Output = A::Output>,
    K: Future<Output = A::Output>,
    L: Future<Output = A::Output>, 
type Output = A::Output;
[src]

pub fn as_pin_ref<'a>(
    self: Pin<&'a Self>
) -> Sum12<Pin<&'a A>, Pin<&'a B>, Pin<&'a C>, Pin<&'a D>, Pin<&'a E>, Pin<&'a F>, Pin<&'a G>, Pin<&'a H>, Pin<&'a I>, Pin<&'a J>, Pin<&'a K>, Pin<&'a L>>

Important traits for Sum12<A, B, C, D, E, F, G, H, I, J, K, L>

impl<A, B, C, D, E, F, G, H, I, J, K, L> Iterator for Sum12<A, B, C, D, E, F, G, H, I, J, K, L> where
    A: Iterator,
    B: Iterator<Item = A::Item>,
    C: Iterator<Item = A::Item>,
    D: Iterator<Item = A::Item>,
    E: Iterator<Item = A::Item>,
    F: Iterator<Item = A::Item>,
    G: Iterator<Item = A::Item>,
    H: Iterator<Item = A::Item>,
    I: Iterator<Item = A::Item>,
    J: Iterator<Item = A::Item>,
    K: Iterator<Item = A::Item>,
    L: Iterator<Item = A::Item>, 
type Item = A::Item;impl<A, B, C, D, E, F, G, H, I, J, K, L> Future for Sum12<A, B, C, D, E, F, G, H, I, J, K, L> where
    A: Future,
    B: Future<Output = A::Output>,
    C: Future<Output = A::Output>,
    D: Future<Output = A::Output>,
    E: Future<Output = A::Output>,
    F: Future<Output = A::Output>,
    G: Future<Output = A::Output>,
    H: Future<Output = A::Output>,
    I: Future<Output = A::Output>,
    J: Future<Output = A::Output>,
    K: Future<Output = A::Output>,
    L: Future<Output = A::Output>, 
type Output = A::Output;
[src]

pub fn as_pin_mut<'a>(
    self: Pin<&'a mut Self>
) -> Sum12<Pin<&'a mut A>, Pin<&'a mut B>, Pin<&'a mut C>, Pin<&'a mut D>, Pin<&'a mut E>, Pin<&'a mut F>, Pin<&'a mut G>, Pin<&'a mut H>, Pin<&'a mut I>, Pin<&'a mut J>, Pin<&'a mut K>, Pin<&'a mut L>>

Important traits for Sum12<A, B, C, D, E, F, G, H, I, J, K, L>

impl<A, B, C, D, E, F, G, H, I, J, K, L> Iterator for Sum12<A, B, C, D, E, F, G, H, I, J, K, L> where
    A: Iterator,
    B: Iterator<Item = A::Item>,
    C: Iterator<Item = A::Item>,
    D: Iterator<Item = A::Item>,
    E: Iterator<Item = A::Item>,
    F: Iterator<Item = A::Item>,
    G: Iterator<Item = A::Item>,
    H: Iterator<Item = A::Item>,
    I: Iterator<Item = A::Item>,
    J: Iterator<Item = A::Item>,
    K: Iterator<Item = A::Item>,
    L: Iterator<Item = A::Item>, 
type Item = A::Item;impl<A, B, C, D, E, F, G, H, I, J, K, L> Future for Sum12<A, B, C, D, E, F, G, H, I, J, K, L> where
    A: Future,
    B: Future<Output = A::Output>,
    C: Future<Output = A::Output>,
    D: Future<Output = A::Output>,
    E: Future<Output = A::Output>,
    F: Future<Output = A::Output>,
    G: Future<Output = A::Output>,
    H: Future<Output = A::Output>,
    I: Future<Output = A::Output>,
    J: Future<Output = A::Output>,
    K: Future<Output = A::Output>,
    L: Future<Output = A::Output>, 
type Output = A::Output;
[src]

impl<A> Sum12<A, A, A, A, A, A, A, A, A, A, A, A>[src]

pub fn into_inner(self) -> A[src]

Trait Implementations

impl<A, B, C, D, E, F, G, H, I, J, K, L, Target> AsMut<Target> for Sum12<A, B, C, D, E, F, G, H, I, J, K, L> where
    A: AsMut<Target>,
    B: AsMut<Target>,
    C: AsMut<Target>,
    D: AsMut<Target>,
    E: AsMut<Target>,
    F: AsMut<Target>,
    G: AsMut<Target>,
    H: AsMut<Target>,
    I: AsMut<Target>,
    J: AsMut<Target>,
    K: AsMut<Target>,
    L: AsMut<Target>, 
[src]

impl<A, B, C, D, E, F, G, H, I, J, K, L, Target> AsRef<Target> for Sum12<A, B, C, D, E, F, G, H, I, J, K, L> where
    A: AsRef<Target>,
    B: AsRef<Target>,
    C: AsRef<Target>,
    D: AsRef<Target>,
    E: AsRef<Target>,
    F: AsRef<Target>,
    G: AsRef<Target>,
    H: AsRef<Target>,
    I: AsRef<Target>,
    J: AsRef<Target>,
    K: AsRef<Target>,
    L: AsRef<Target>, 
[src]

impl<A: Clone, B: Clone, C: Clone, D: Clone, E: Clone, F: Clone, G: Clone, H: Clone, I: Clone, J: Clone, K: Clone, L: Clone> Clone for Sum12<A, B, C, D, E, F, G, H, I, J, K, L>[src]

impl<A: Copy, B: Copy, C: Copy, D: Copy, E: Copy, F: Copy, G: Copy, H: Copy, I: Copy, J: Copy, K: Copy, L: Copy> Copy for Sum12<A, B, C, D, E, F, G, H, I, J, K, L>[src]

impl<A: Debug, B: Debug, C: Debug, D: Debug, E: Debug, F: Debug, G: Debug, H: Debug, I: Debug, J: Debug, K: Debug, L: Debug> Debug for Sum12<A, B, C, D, E, F, G, H, I, J, K, L>[src]

impl<A, B, C, D, E, F, G, H, I, J, K, L> Deref for Sum12<A, B, C, D, E, F, G, H, I, J, K, L> where
    A: Deref,
    B: Deref<Target = A::Target>,
    C: Deref<Target = A::Target>,
    D: Deref<Target = A::Target>,
    E: Deref<Target = A::Target>,
    F: Deref<Target = A::Target>,
    G: Deref<Target = A::Target>,
    H: Deref<Target = A::Target>,
    I: Deref<Target = A::Target>,
    J: Deref<Target = A::Target>,
    K: Deref<Target = A::Target>,
    L: Deref<Target = A::Target>, 
[src]

type Target = A::Target

The resulting type after dereferencing.

impl<A, B, C, D, E, F, G, H, I, J, K, L> DerefMut for Sum12<A, B, C, D, E, F, G, H, I, J, K, L> where
    A: DerefMut,
    B: DerefMut<Target = A::Target>,
    C: DerefMut<Target = A::Target>,
    D: DerefMut<Target = A::Target>,
    E: DerefMut<Target = A::Target>,
    F: DerefMut<Target = A::Target>,
    G: DerefMut<Target = A::Target>,
    H: DerefMut<Target = A::Target>,
    I: DerefMut<Target = A::Target>,
    J: DerefMut<Target = A::Target>,
    K: DerefMut<Target = A::Target>,
    L: DerefMut<Target = A::Target>, 
[src]

impl<'de, A, B, C, D, E, F, G, H, I, J, K, L> Deserialize<'de> for Sum12<A, B, C, D, E, F, G, H, I, J, K, L> where
    A: Deserialize<'de>,
    B: Deserialize<'de>,
    C: Deserialize<'de>,
    D: Deserialize<'de>,
    E: Deserialize<'de>,
    F: Deserialize<'de>,
    G: Deserialize<'de>,
    H: Deserialize<'de>,
    I: Deserialize<'de>,
    J: Deserialize<'de>,
    K: Deserialize<'de>,
    L: Deserialize<'de>, 
[src]

impl<A, B, C, D, E, F, G, H, I, J, K, L> Display for Sum12<A, B, C, D, E, F, G, H, I, J, K, L> where
    A: Display,
    B: Display,
    C: Display,
    D: Display,
    E: Display,
    F: Display,
    G: Display,
    H: Display,
    I: Display,
    J: Display,
    K: Display,
    L: Display
[src]

impl<A, B, C, D, E, F, G, H, I, J, K, L> DoubleEndedIterator for Sum12<A, B, C, D, E, F, G, H, I, J, K, L> where
    A: DoubleEndedIterator,
    B: DoubleEndedIterator<Item = A::Item>,
    C: DoubleEndedIterator<Item = A::Item>,
    D: DoubleEndedIterator<Item = A::Item>,
    E: DoubleEndedIterator<Item = A::Item>,
    F: DoubleEndedIterator<Item = A::Item>,
    G: DoubleEndedIterator<Item = A::Item>,
    H: DoubleEndedIterator<Item = A::Item>,
    I: DoubleEndedIterator<Item = A::Item>,
    J: DoubleEndedIterator<Item = A::Item>,
    K: DoubleEndedIterator<Item = A::Item>,
    L: DoubleEndedIterator<Item = A::Item>, 
[src]

impl<A: Eq, B: Eq, C: Eq, D: Eq, E: Eq, F: Eq, G: Eq, H: Eq, I: Eq, J: Eq, K: Eq, L: Eq> Eq for Sum12<A, B, C, D, E, F, G, H, I, J, K, L>[src]

impl<A, B, C, D, E, F, G, H, I, J, K, L> Error for Sum12<A, B, C, D, E, F, G, H, I, J, K, L> where
    A: Error,
    B: Error,
    C: Error,
    D: Error,
    E: Error,
    F: Error,
    G: Error,
    H: Error,
    I: Error,
    J: Error,
    K: Error,
    L: Error
[src]

impl<A, B, C, D, E, F, G, H, I, J, K, L> ExactSizeIterator for Sum12<A, B, C, D, E, F, G, H, I, J, K, L> where
    A: ExactSizeIterator,
    B: ExactSizeIterator<Item = A::Item>,
    C: ExactSizeIterator<Item = A::Item>,
    D: ExactSizeIterator<Item = A::Item>,
    E: ExactSizeIterator<Item = A::Item>,
    F: ExactSizeIterator<Item = A::Item>,
    G: ExactSizeIterator<Item = A::Item>,
    H: ExactSizeIterator<Item = A::Item>,
    I: ExactSizeIterator<Item = A::Item>,
    J: ExactSizeIterator<Item = A::Item>,
    K: ExactSizeIterator<Item = A::Item>,
    L: ExactSizeIterator<Item = A::Item>, 
[src]

impl<A, B, C, D, E, F, G, H, I, J, K, L> Future for Sum12<A, B, C, D, E, F, G, H, I, J, K, L> where
    A: Future,
    B: Future<Output = A::Output>,
    C: Future<Output = A::Output>,
    D: Future<Output = A::Output>,
    E: Future<Output = A::Output>,
    F: Future<Output = A::Output>,
    G: Future<Output = A::Output>,
    H: Future<Output = A::Output>,
    I: Future<Output = A::Output>,
    J: Future<Output = A::Output>,
    K: Future<Output = A::Output>,
    L: Future<Output = A::Output>, 
[src]

type Output = A::Output

The type of value produced on completion.

impl<A: Hash, B: Hash, C: Hash, D: Hash, E: Hash, F: Hash, G: Hash, H: Hash, I: Hash, J: Hash, K: Hash, L: Hash> Hash for Sum12<A, B, C, D, E, F, G, H, I, J, K, L>[src]

impl<A, B, C, D, E, F, G, H, I, J, K, L> Iterator for Sum12<A, B, C, D, E, F, G, H, I, J, K, L> where
    A: Iterator,
    B: Iterator<Item = A::Item>,
    C: Iterator<Item = A::Item>,
    D: Iterator<Item = A::Item>,
    E: Iterator<Item = A::Item>,
    F: Iterator<Item = A::Item>,
    G: Iterator<Item = A::Item>,
    H: Iterator<Item = A::Item>,
    I: Iterator<Item = A::Item>,
    J: Iterator<Item = A::Item>,
    K: Iterator<Item = A::Item>,
    L: Iterator<Item = A::Item>, 
[src]

type Item = A::Item

The type of the elements being iterated over.

impl<A: Ord, B: Ord, C: Ord, D: Ord, E: Ord, F: Ord, G: Ord, H: Ord, I: Ord, J: Ord, K: Ord, L: Ord> Ord for Sum12<A, B, C, D, E, F, G, H, I, J, K, L>[src]

impl<A: PartialEq, B: PartialEq, C: PartialEq, D: PartialEq, E: PartialEq, F: PartialEq, G: PartialEq, H: PartialEq, I: PartialEq, J: PartialEq, K: PartialEq, L: PartialEq> PartialEq<Sum12<A, B, C, D, E, F, G, H, I, J, K, L>> for Sum12<A, B, C, D, E, F, G, H, I, J, K, L>[src]

impl<A: PartialOrd, B: PartialOrd, C: PartialOrd, D: PartialOrd, E: PartialOrd, F: PartialOrd, G: PartialOrd, H: PartialOrd, I: PartialOrd, J: PartialOrd, K: PartialOrd, L: PartialOrd> PartialOrd<Sum12<A, B, C, D, E, F, G, H, I, J, K, L>> for Sum12<A, B, C, D, E, F, G, H, I, J, K, L>[src]

impl<A, B, C, D, E, F, G, H, I, J, K, L> Serialize for Sum12<A, B, C, D, E, F, G, H, I, J, K, L> where
    A: Serialize,
    B: Serialize,
    C: Serialize,
    D: Serialize,
    E: Serialize,
    F: Serialize,
    G: Serialize,
    H: Serialize,
    I: Serialize,
    J: Serialize,
    K: Serialize,
    L: Serialize
[src]

impl<A, B, C, D, E, F, G, H, I, J, K, L> StructuralEq for Sum12<A, B, C, D, E, F, G, H, I, J, K, L>[src]

impl<A, B, C, D, E, F, G, H, I, J, K, L> StructuralPartialEq for Sum12<A, B, C, D, E, F, G, H, I, J, K, L>[src]

Auto Trait Implementations

impl<A, B, C, D, E, F, G, H, I, J, K, L> RefUnwindSafe for Sum12<A, B, C, D, E, F, G, H, I, J, K, L> where
    A: RefUnwindSafe,
    B: RefUnwindSafe,
    C: RefUnwindSafe,
    D: RefUnwindSafe,
    E: RefUnwindSafe,
    F: RefUnwindSafe,
    G: RefUnwindSafe,
    H: RefUnwindSafe,
    I: RefUnwindSafe,
    J: RefUnwindSafe,
    K: RefUnwindSafe,
    L: RefUnwindSafe

impl<A, B, C, D, E, F, G, H, I, J, K, L> Send for Sum12<A, B, C, D, E, F, G, H, I, J, K, L> where
    A: Send,
    B: Send,
    C: Send,
    D: Send,
    E: Send,
    F: Send,
    G: Send,
    H: Send,
    I: Send,
    J: Send,
    K: Send,
    L: Send

impl<A, B, C, D, E, F, G, H, I, J, K, L> Sync for Sum12<A, B, C, D, E, F, G, H, I, J, K, L> where
    A: Sync,
    B: Sync,
    C: Sync,
    D: Sync,
    E: Sync,
    F: Sync,
    G: Sync,
    H: Sync,
    I: Sync,
    J: Sync,
    K: Sync,
    L: Sync

impl<A, B, C, D, E, F, G, H, I, J, K, L> Unpin for Sum12<A, B, C, D, E, F, G, H, I, J, K, L> where
    A: Unpin,
    B: Unpin,
    C: Unpin,
    D: Unpin,
    E: Unpin,
    F: Unpin,
    G: Unpin,
    H: Unpin,
    I: Unpin,
    J: Unpin,
    K: Unpin,
    L: Unpin

impl<A, B, C, D, E, F, G, H, I, J, K, L> UnwindSafe for Sum12<A, B, C, D, E, F, G, H, I, J, K, L> where
    A: UnwindSafe,
    B: UnwindSafe,
    C: UnwindSafe,
    D: UnwindSafe,
    E: UnwindSafe,
    F: UnwindSafe,
    G: UnwindSafe,
    H: UnwindSafe,
    I: UnwindSafe,
    J: UnwindSafe,
    K: UnwindSafe,
    L: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.