[][src]Struct pergola::Tuple3

pub struct Tuple3<A: LatticeDef, B: LatticeDef, C: LatticeDef> { /* fields omitted */ }

Cartesian product lattice for 3 inner lattices, joining elements pairwise and with the product partial order (not lexicographical order) where (a, b, c) <= (d, e, f) iff a <= d and b <= e and c <= f.

Trait Implementations

impl<A: Clone + LatticeDef, B: Clone + LatticeDef, C: Clone + LatticeDef> Clone for Tuple3<A, B, C>[src]

impl<A: Debug + LatticeDef, B: Debug + LatticeDef, C: Debug + LatticeDef> Debug for Tuple3<A, B, C>[src]

impl<A: Default + LatticeDef, B: Default + LatticeDef, C: Default + LatticeDef> Default for Tuple3<A, B, C>[src]

impl<'de, A: LatticeDef, B: LatticeDef, C: LatticeDef> Deserialize<'de> for Tuple3<A, B, C>[src]

impl<A: Eq + LatticeDef, B: Eq + LatticeDef, C: Eq + LatticeDef> Eq for Tuple3<A, B, C>[src]

impl<A: Hash + LatticeDef, B: Hash + LatticeDef, C: Hash + LatticeDef> Hash for Tuple3<A, B, C>[src]

impl<A: LatticeDef, B: LatticeDef, C: LatticeDef> LatticeDef for Tuple3<A, B, C>[src]

type T = (LatticeElt<A>, LatticeElt<B>, LatticeElt<C>)

impl<A: Ord + LatticeDef, B: Ord + LatticeDef, C: Ord + LatticeDef> Ord for Tuple3<A, B, C>[src]

impl<A: PartialEq + LatticeDef, B: PartialEq + LatticeDef, C: PartialEq + LatticeDef> PartialEq<Tuple3<A, B, C>> for Tuple3<A, B, C>[src]

impl<A: PartialOrd + LatticeDef, B: PartialOrd + LatticeDef, C: PartialOrd + LatticeDef> PartialOrd<Tuple3<A, B, C>> for Tuple3<A, B, C>[src]

impl<A: LatticeDef, B: LatticeDef, C: LatticeDef> Serialize for Tuple3<A, B, C>[src]

impl<A: LatticeDef, B: LatticeDef, C: LatticeDef> StructuralEq for Tuple3<A, B, C>[src]

impl<A: LatticeDef, B: LatticeDef, C: LatticeDef> StructuralPartialEq for Tuple3<A, B, C>[src]

Auto Trait Implementations

impl<A, B, C> RefUnwindSafe for Tuple3<A, B, C> where
    A: RefUnwindSafe,
    B: RefUnwindSafe,
    C: RefUnwindSafe
[src]

impl<A, B, C> Send for Tuple3<A, B, C> where
    A: Send,
    B: Send,
    C: Send
[src]

impl<A, B, C> Sync for Tuple3<A, B, C> where
    A: Sync,
    B: Sync,
    C: Sync
[src]

impl<A, B, C> Unpin for Tuple3<A, B, C> where
    A: Unpin,
    B: Unpin,
    C: Unpin
[src]

impl<A, B, C> UnwindSafe for Tuple3<A, B, C> where
    A: UnwindSafe,
    B: UnwindSafe,
    C: UnwindSafe
[src]

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<T> Same<T> for T

type Output = T

Should always be Self

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.