[][src]Struct eyros::Mix8

pub struct Mix8<A, B, C, D, E, F, G, H> {
    pub v0: Mix<A>,
    pub v1: Mix<B>,
    pub v2: Mix<C>,
    pub v3: Mix<D>,
    pub v4: Mix<E>,
    pub v5: Mix<F>,
    pub v6: Mix<G>,
    pub v7: Mix<H>,
}

Mix coordinate container

Fields

v0: Mix<A>

Access the i-th element.

v1: Mix<B>

Access the i-th element.

v2: Mix<C>

Access the i-th element.

v3: Mix<D>

Access the i-th element.

v4: Mix<E>

Access the i-th element.

v5: Mix<F>

Access the i-th element.

v6: Mix<G>

Access the i-th element.

v7: Mix<H>

Access the i-th element.

Implementations

impl<A, B, C, D, E, F, G, H> Mix8<A, B, C, D, E, F, G, H>[src]

pub fn new(
    v0: Mix<A>,
    v1: Mix<B>,
    v2: Mix<C>,
    v3: Mix<D>,
    v4: Mix<E>,
    v5: Mix<F>,
    v6: Mix<G>,
    v7: Mix<H>
) -> Self
[src]

Create a new Mix container from a Mix element for each dimension.

Trait Implementations

impl<A: Clone, B: Clone, C: Clone, D: Clone, E: Clone, F: Clone, G: Clone, H: Clone> Clone for Mix8<A, B, C, D, E, F, G, H>[src]

impl<A: Copy, B: Copy, C: Copy, D: Copy, E: Copy, F: Copy, G: Copy, H: Copy> Copy for Mix8<A, B, C, D, E, F, G, H>[src]

impl<A, B, C, D, E, F, G, H> CountBytes for Mix8<A, B, C, D, E, F, G, H> where
    A: CountBytes,
    B: CountBytes,
    C: CountBytes,
    D: CountBytes,
    E: CountBytes,
    F: CountBytes,
    G: CountBytes,
    H: CountBytes
[src]

impl<A: Debug, B: Debug, C: Debug, D: Debug, E: Debug, F: Debug, G: Debug, H: Debug> Debug for Mix8<A, B, C, D, E, F, G, H>[src]

impl<A: Eq, B: Eq, C: Eq, D: Eq, E: Eq, F: Eq, G: Eq, H: Eq> Eq for Mix8<A, B, C, D, E, F, G, H>[src]

impl<A, B, C, D, E, F, G, H> FromBytes for Mix8<A, B, C, D, E, F, G, H> where
    A: FromBytes,
    B: FromBytes,
    C: FromBytes,
    D: FromBytes,
    E: FromBytes,
    F: FromBytes,
    G: FromBytes,
    H: FromBytes
[src]

impl<A, B, C, D, E, F, G, H> Into<(Mix<A>, Mix<B>, Mix<C>, Mix<D>, Mix<E>, Mix<F>, Mix<G>, Mix<H>)> for Mix8<A, B, C, D, E, F, G, H>[src]

impl<A, B, C, D, E, F, G, H> Into<Mix8<A, B, C, D, E, F, G, H>> for (Mix<A>, Mix<B>, Mix<C>, Mix<D>, Mix<E>, Mix<F>, Mix<G>, Mix<H>)[src]

impl<A: PartialEq, B: PartialEq, C: PartialEq, D: PartialEq, E: PartialEq, F: PartialEq, G: PartialEq, H: PartialEq> PartialEq<Mix8<A, B, C, D, E, F, G, H>> for Mix8<A, B, C, D, E, F, G, H>[src]

impl<A, B, C, D, E, F, G, H> Point for Mix8<A, B, C, D, E, F, G, H> where
    ((A, A), (B, B), (C, C), (D, D), (E, E), (F, F), (G, G), (H, H)): Point,
    A: ToBytes + FromBytes + CountBytes + Copy + Send + Sync + Debug + PartialOrd + Add<Output = A> + Div<Output = A> + From<u8>,
    B: ToBytes + FromBytes + CountBytes + Copy + Send + Sync + Debug + PartialOrd + Add<Output = B> + Div<Output = B> + From<u8>,
    C: ToBytes + FromBytes + CountBytes + Copy + Send + Sync + Debug + PartialOrd + Add<Output = C> + Div<Output = C> + From<u8>,
    D: ToBytes + FromBytes + CountBytes + Copy + Send + Sync + Debug + PartialOrd + Add<Output = D> + Div<Output = D> + From<u8>,
    E: ToBytes + FromBytes + CountBytes + Copy + Send + Sync + Debug + PartialOrd + Add<Output = E> + Div<Output = E> + From<u8>,
    F: ToBytes + FromBytes + CountBytes + Copy + Send + Sync + Debug + PartialOrd + Add<Output = F> + Div<Output = F> + From<u8>,
    G: ToBytes + FromBytes + CountBytes + Copy + Send + Sync + Debug + PartialOrd + Add<Output = G> + Div<Output = G> + From<u8>,
    H: ToBytes + FromBytes + CountBytes + Copy + Send + Sync + Debug + PartialOrd + Add<Output = H> + Div<Output = H> + From<u8>, 
[src]

type Bounds = ((A, B, C, D, E, F, G, H), (A, B, C, D, E, F, G, H))

Bounding-box corresponding to (min,max) as used by db.query(bbox).

type Range = ((A, A), (B, B), (C, C), (D, D), (E, E), (F, F), (G, G), (H, H))

Range corresponding to ((minX,maxX),(minY,maxY),...)

impl<A, B, C, D, E, F, G, H> StructuralEq for Mix8<A, B, C, D, E, F, G, H>[src]

impl<A, B, C, D, E, F, G, H> StructuralPartialEq for Mix8<A, B, C, D, E, F, G, H>[src]

impl<A, B, C, D, E, F, G, H> ToBytes for Mix8<A, B, C, D, E, F, G, H> where
    A: ToBytes + CountBytes,
    B: ToBytes + CountBytes,
    C: ToBytes + CountBytes,
    D: ToBytes + CountBytes,
    E: ToBytes + CountBytes,
    F: ToBytes + CountBytes,
    G: ToBytes + CountBytes,
    H: ToBytes + CountBytes
[src]

Auto Trait Implementations

impl<A, B, C, D, E, F, G, H> RefUnwindSafe for Mix8<A, B, C, D, E, F, G, H> where
    A: RefUnwindSafe,
    B: RefUnwindSafe,
    C: RefUnwindSafe,
    D: RefUnwindSafe,
    E: RefUnwindSafe,
    F: RefUnwindSafe,
    G: RefUnwindSafe,
    H: RefUnwindSafe

impl<A, B, C, D, E, F, G, H> Send for Mix8<A, B, C, D, E, F, G, H> where
    A: Send,
    B: Send,
    C: Send,
    D: Send,
    E: Send,
    F: Send,
    G: Send,
    H: Send

impl<A, B, C, D, E, F, G, H> Sync for Mix8<A, B, C, D, E, F, G, H> where
    A: Sync,
    B: Sync,
    C: Sync,
    D: Sync,
    E: Sync,
    F: Sync,
    G: Sync,
    H: Sync

impl<A, B, C, D, E, F, G, H> Unpin for Mix8<A, B, C, D, E, F, G, H> where
    A: Unpin,
    B: Unpin,
    C: Unpin,
    D: Unpin,
    E: Unpin,
    F: Unpin,
    G: Unpin,
    H: Unpin

impl<A, B, C, D, E, F, G, H> UnwindSafe for Mix8<A, B, C, D, E, F, G, H> where
    A: UnwindSafe,
    B: UnwindSafe,
    C: UnwindSafe,
    D: UnwindSafe,
    E: UnwindSafe,
    F: UnwindSafe,
    G: UnwindSafe,
    H: 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> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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.

impl<T> Value for T where
    T: Debug + Clone + Send + Sync + ToBytes + FromBytes + CountBytes
[src]