[][src]Struct pergola::BitSetWithUnion

pub struct BitSetWithUnion;

This lattice is a standard BitSet-with-union.

Note: you could use a BitSet in the MaxDef or MinOpt lattices (BitSet satisfies the bounds) but the "set semantics" you usually want in a set-of-sets lattice aren't achieved that way: the Ord-provided order on BitSet is a lexicographical total order on the sequence of bits, rather than set-theoretic sub/superset relation (which is only a partial order), and of course joining by max (or min) of that order will not produce a union (or intersection) as one would want.

Trait Implementations

impl Clone for BitSetWithUnion[src]

impl Debug for BitSetWithUnion[src]

impl Default for BitSetWithUnion[src]

impl<'de> Deserialize<'de> for BitSetWithUnion[src]

impl Eq for BitSetWithUnion[src]

impl Hash for BitSetWithUnion[src]

impl LatticeDef for BitSetWithUnion[src]

type T = BitSetWrapper

impl Ord for BitSetWithUnion[src]

impl PartialEq<BitSetWithUnion> for BitSetWithUnion[src]

impl PartialOrd<BitSetWithUnion> for BitSetWithUnion[src]

impl Serialize for BitSetWithUnion[src]

impl StructuralEq for BitSetWithUnion[src]

impl StructuralPartialEq for BitSetWithUnion[src]

Auto Trait Implementations

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.