[][src]Struct eyros::Mix6

pub struct Mix6<A, B, C, D, E, F> {
    pub v0: Mix<A>,
    pub v1: Mix<B>,
    pub v2: Mix<C>,
    pub v3: Mix<D>,
    pub v4: Mix<E>,
    pub v5: Mix<F>,
}

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.

Implementations

impl<A, B, C, D, E, F> Mix6<A, B, C, D, E, F>[src]

pub fn new(
    v0: Mix<A>,
    v1: Mix<B>,
    v2: Mix<C>,
    v3: Mix<D>,
    v4: Mix<E>,
    v5: Mix<F>
) -> 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> Clone for Mix6<A, B, C, D, E, F>[src]

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

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

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

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

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

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

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

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

impl<A, B, C, D, E, F> Point for Mix6<A, B, C, D, E, F> where
    ((A, A), (B, B), (C, C), (D, D), (E, E), (F, F)): 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>, 
[src]

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

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))

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

impl<A, B, C, D, E, F> StructuralEq for Mix6<A, B, C, D, E, F>[src]

impl<A, B, C, D, E, F> StructuralPartialEq for Mix6<A, B, C, D, E, F>[src]

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

Auto Trait Implementations

impl<A, B, C, D, E, F> RefUnwindSafe for Mix6<A, B, C, D, E, F> where
    A: RefUnwindSafe,
    B: RefUnwindSafe,
    C: RefUnwindSafe,
    D: RefUnwindSafe,
    E: RefUnwindSafe,
    F: RefUnwindSafe

impl<A, B, C, D, E, F> Send for Mix6<A, B, C, D, E, F> where
    A: Send,
    B: Send,
    C: Send,
    D: Send,
    E: Send,
    F: Send

impl<A, B, C, D, E, F> Sync for Mix6<A, B, C, D, E, F> where
    A: Sync,
    B: Sync,
    C: Sync,
    D: Sync,
    E: Sync,
    F: Sync

impl<A, B, C, D, E, F> Unpin for Mix6<A, B, C, D, E, F> where
    A: Unpin,
    B: Unpin,
    C: Unpin,
    D: Unpin,
    E: Unpin,
    F: Unpin

impl<A, B, C, D, E, F> UnwindSafe for Mix6<A, B, C, D, E, F> where
    A: UnwindSafe,
    B: UnwindSafe,
    C: UnwindSafe,
    D: UnwindSafe,
    E: UnwindSafe,
    F: 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]