[][src]Struct eyros::Mix7

pub struct Mix7<A, B, C, D, E, F, G> {
    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>,
}

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.

Implementations

impl<A, B, C, D, E, F, G> Mix7<A, B, C, D, E, F, G>[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>
) -> 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> Clone for Mix7<A, B, C, D, E, F, G>[src]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Auto Trait Implementations

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

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

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

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

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