[][src]Struct gf::support::lattice::Flip

pub struct Flip<L>(pub L);

Adapter for converting a meet semilattice into a join semilattice, a bottom element into a top element and vice versa.

Trait Implementations

impl<L: Top> Bottom for Flip<L>[src]

impl<L: Clone> Clone for Flip<L>[src]

impl<L: Copy> Copy for Flip<L>[src]

impl<L: Debug> Debug for Flip<L>[src]

impl<L: Eq> Eq for Flip<L>[src]

impl<L: Hash> Hash for Flip<L>[src]

impl<L: Meet> Join for Flip<L>[src]

impl<L: Join> Meet for Flip<L>[src]

impl<L: PartialEq> PartialEq<Flip<L>> for Flip<L>[src]

impl<L> StructuralEq for Flip<L>[src]

impl<L> StructuralPartialEq for Flip<L>[src]

impl<L: Bottom> Top for Flip<L>[src]

Auto Trait Implementations

impl<L> RefUnwindSafe for Flip<L> where
    L: RefUnwindSafe

impl<L> Send for Flip<L> where
    L: Send

impl<L> Sync for Flip<L> where
    L: Sync

impl<L> Unpin for Flip<L> where
    L: Unpin

impl<L> UnwindSafe for Flip<L> where
    L: 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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?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.