[][src]Struct pergola::BTreeMapWithIntersection

pub struct BTreeMapWithIntersection<K: DefTraits, VD: LatticeDef> { /* fields omitted */ }

Similar to other intersection-based lattices in this crate, this lattice is a map that stores inner lattices and joins using intersection. Maps are represented as Option<BTreeMap> and the unit is again a putative "maximum" map-with-all-possible-keys (represented by None).

Trait Implementations

impl<K: Clone + DefTraits, VD: Clone + LatticeDef> Clone for BTreeMapWithIntersection<K, VD>[src]

impl<K: Debug + DefTraits, VD: Debug + LatticeDef> Debug for BTreeMapWithIntersection<K, VD>[src]

impl<K: Default + DefTraits, VD: Default + LatticeDef> Default for BTreeMapWithIntersection<K, VD>[src]

impl<'de, K: DefTraits, VD: LatticeDef> Deserialize<'de> for BTreeMapWithIntersection<K, VD>[src]

impl<K: Eq + DefTraits, VD: Eq + LatticeDef> Eq for BTreeMapWithIntersection<K, VD>[src]

impl<K: Hash + DefTraits, VD: Hash + LatticeDef> Hash for BTreeMapWithIntersection<K, VD>[src]

impl<K: DefTraits, VD: LatticeDef> LatticeDef for BTreeMapWithIntersection<K, VD> where
    VD::T: Clone
[src]

type T = Option<BTreeMap<K, LatticeElt<VD>>>

impl<K: Ord + DefTraits, VD: Ord + LatticeDef> Ord for BTreeMapWithIntersection<K, VD>[src]

impl<K: PartialEq + DefTraits, VD: PartialEq + LatticeDef> PartialEq<BTreeMapWithIntersection<K, VD>> for BTreeMapWithIntersection<K, VD>[src]

impl<K: PartialOrd + DefTraits, VD: PartialOrd + LatticeDef> PartialOrd<BTreeMapWithIntersection<K, VD>> for BTreeMapWithIntersection<K, VD>[src]

impl<K: DefTraits, VD: LatticeDef> Serialize for BTreeMapWithIntersection<K, VD>[src]

impl<K: DefTraits, VD: LatticeDef> StructuralEq for BTreeMapWithIntersection<K, VD>[src]

impl<K: DefTraits, VD: LatticeDef> StructuralPartialEq for BTreeMapWithIntersection<K, VD>[src]

Auto Trait Implementations

impl<K, VD> RefUnwindSafe for BTreeMapWithIntersection<K, VD> where
    K: RefUnwindSafe,
    VD: RefUnwindSafe
[src]

impl<K, VD> Send for BTreeMapWithIntersection<K, VD> where
    K: Send,
    VD: Send
[src]

impl<K, VD> Sync for BTreeMapWithIntersection<K, VD> where
    K: Sync,
    VD: Sync
[src]

impl<K, VD> Unpin for BTreeMapWithIntersection<K, VD> where
    K: Unpin,
    VD: Unpin
[src]

impl<K, VD> UnwindSafe for BTreeMapWithIntersection<K, VD> where
    K: UnwindSafe,
    VD: 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.