Struct tuple::T11 [] [src]

pub struct T11<A, B, C, D, E, F, G, H, I, J, K>(pub A, pub B, pub C, pub D, pub E, pub F, pub G, pub H, pub I, pub J, pub K);

Methods

impl<T> T11<T, T, T, T, T, T, T, T, T, T, T>
[src]

apply function f to each element and return the resulting tuple

Trait Implementations

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

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

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

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

Formats the value using the given formatter.

impl<A, B, C, D, E, F, G, H, I, J, K> From<u16> for T11<A, B, C, D, E, F, G, H, I, J, K> where A: From<u16>,
        B: From<u16>,
        C: From<u16>,
        D: From<u16>,
        E: From<u16>,
        F: From<u16>,
        G: From<u16>,
        H: From<u16>,
        I: From<u16>,
        J: From<u16>,
        K: From<u16>
[src]

Performs the conversion.

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

The type of the elements being iterated over.

Advances the iterator and returns the next value. Read more

Returns the bounds on the remaining length of the iterator. Read more

Consumes the iterator, counting the number of iterations and returning it. Read more

Consumes the iterator, returning the last element. Read more

Returns the nth element of the iterator. Read more

Takes two iterators and creates a new iterator over both in sequence. Read more

'Zips up' two iterators into a single iterator of pairs. Read more

Takes a closure and creates an iterator which calls that closure on each element. Read more

Creates an iterator which uses a closure to determine if an element should be yielded. Read more

Creates an iterator that both filters and maps. Read more

Creates an iterator which gives the current iteration count as well as the next value. Read more

Creates an iterator which can use peek to look at the next element of the iterator without consuming it. Read more

Creates an iterator that [skip]s elements based on a predicate. Read more

Creates an iterator that yields elements based on a predicate. Read more

Creates an iterator that skips the first n elements. Read more

Creates an iterator that yields its first n elements. Read more

An iterator adaptor similar to [fold] that holds internal state and produces a new iterator. Read more

Creates an iterator that works like map, but flattens nested structure. Read more

Creates an iterator which ends after the first [None]. Read more

Do something with each element of an iterator, passing the value on. Read more

Borrows an iterator, rather than consuming it. Read more

Transforms an iterator into a collection. Read more

Consumes an iterator, creating two collections from it. Read more

An iterator adaptor that applies a function, producing a single, final value. Read more

Tests if every element of the iterator matches a predicate. Read more

Tests if any element of the iterator matches a predicate. Read more

Searches for an element of an iterator that satisfies a predicate. Read more

Searches for an element in an iterator, returning its index. Read more

Searches for an element in an iterator from the right, returning its index. Read more

Returns the maximum element of an iterator. Read more

Returns the minimum element of an iterator. Read more

Returns the element that gives the maximum value from the specified function. Read more

Returns the element that gives the maximum value with respect to the specified comparison function. Read more

Returns the element that gives the minimum value from the specified function. Read more

Returns the element that gives the minimum value with respect to the specified comparison function. Read more

Reverses an iterator's direction. Read more

Converts an iterator of pairs into a pair of containers. Read more

Creates an iterator which [clone]s all of its elements. Read more

Repeats an iterator endlessly. Read more

Sums the elements of an iterator. Read more

Iterates over the entire iterator, multiplying all the elements Read more

Lexicographically compares the elements of this Iterator with those of another. Read more

Lexicographically compares the elements of this Iterator with those of another. Read more

Determines if the elements of this Iterator are equal to those of another. Read more

Determines if the elements of this Iterator are unequal to those of another. Read more

Determines if the elements of this Iterator are lexicographically less than those of another. Read more

Determines if the elements of this Iterator are lexicographically less or equal to those of another. Read more

Determines if the elements of this Iterator are lexicographically greater than those of another. Read more

Determines if the elements of this Iterator are lexicographically greater than or equal to those of another. Read more

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

The resulting type after applying the + operator

The method for the + operator

impl<T> Add<T> for T11<T, T, T, T, T, T, T, T, T, T, T> where T: Add + Clone
[src]

The resulting type after applying the + operator

The method for the + operator

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

The method for the += operator

impl<T> AddAssign<T> for T11<T, T, T, T, T, T, T, T, T, T, T> where T: AddAssign + Clone
[src]

The method for the += operator

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

The resulting type after applying the - operator

The method for the - operator

impl<T> Sub<T> for T11<T, T, T, T, T, T, T, T, T, T, T> where T: Sub + Clone
[src]

The resulting type after applying the - operator

The method for the - operator

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

The method for the -= operator

impl<T> SubAssign<T> for T11<T, T, T, T, T, T, T, T, T, T, T> where T: SubAssign + Clone
[src]

The method for the -= operator

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

The resulting type after applying the * operator

The method for the * operator

impl<T> Mul<T> for T11<T, T, T, T, T, T, T, T, T, T, T> where T: Mul + Clone
[src]

The resulting type after applying the * operator

The method for the * operator

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

The method for the *= operator

impl<T> MulAssign<T> for T11<T, T, T, T, T, T, T, T, T, T, T> where T: MulAssign + Clone
[src]

The method for the *= operator

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

The resulting type after applying the / operator

The method for the / operator

impl<T> Div<T> for T11<T, T, T, T, T, T, T, T, T, T, T> where T: Div + Clone
[src]

The resulting type after applying the / operator

The method for the / operator

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

The method for the /= operator

impl<T> DivAssign<T> for T11<T, T, T, T, T, T, T, T, T, T, T> where T: DivAssign + Clone
[src]

The method for the /= operator

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

The resulting type after applying the - operator

The method for the unary - operator

impl<T> Index<usize> for T11<T, T, T, T, T, T, T, T, T, T, T>
[src]

The returned type after indexing

The method for the indexing (container[index]) operation

impl<T> IndexMut<usize> for T11<T, T, T, T, T, T, T, T, T, T, T>
[src]

The method for the mutable indexing (container[index]) operation

impl<A, B, C, D, E, F, G, H, I, J, K> From<(A, B, C, D, E, F, G, H, I, J, K)> for T11<A, B, C, D, E, F, G, H, I, J, K>
[src]

Performs the conversion.

impl<A, B, C, D, E, F, G, H, I, J, K> Into<(A, B, C, D, E, F, G, H, I, J, K)> for T11<A, B, C, D, E, F, G, H, I, J, K>
[src]

Performs the conversion.

impl<T> From<[T; 11]> for T11<T, T, T, T, T, T, T, T, T, T, T>
[src]

Performs the conversion.

impl<T> Into<[T; 11]> for T11<T, T, T, T, T, T, T, T, T, T, T>
[src]

Performs the conversion.

impl<'a, T> TryFrom<&'a [T]> for T11<T, T, T, T, T, T, T, T, T, T, T> where T: Clone
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Returns the additive identity element of Self, 0. Read more

Returns true if self is equal to the additive identity.

impl<T> TupleElements for T11<T, T, T, T, T, T, T, T, T, T, T>
[src]

N: usize = 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 0

returns an Iterator over references to the elements of the tuple

returns an Iterator over mutable references to elements of the tuple

attempt to access the n-th element

attempt to access the n-th element mutablbly. This function shall not return the same data for two different indices. Read more

impl<T> Splat<T> for T11<T, T, T, T, T, T, T, T, T, T, T> where T: Clone
[src]

impl<A, B, C, D, E, F, G, H, I, J, K> OpRotateLeft for T11<A, B, C, D, E, F, G, H, I, J, K>
[src]

rotate left. The previously first element is now the first.

impl<A, B, C, D, E, F, G, H, I, J, K> OpRotateRight for T11<A, B, C, D, E, F, G, H, I, J, K>
[src]

rotate right. The previously last element is now the last.

impl<A, B, C, D, E, F, G, H, I, J, K> OpReverse for T11<A, B, C, D, E, F, G, H, I, J, K>
[src]

reverse the elements.