pub struct ArcOrdMapWithIntersection<K: DefTraits, VD: LatticeDef> { /* private fields */ }Expand description
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§
Source§impl<K: Clone + DefTraits, VD: Clone + LatticeDef> Clone for ArcOrdMapWithIntersection<K, VD>
impl<K: Clone + DefTraits, VD: Clone + LatticeDef> Clone for ArcOrdMapWithIntersection<K, VD>
Source§fn clone(&self) -> ArcOrdMapWithIntersection<K, VD>
fn clone(&self) -> ArcOrdMapWithIntersection<K, VD>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<K: Debug + DefTraits, VD: Debug + LatticeDef> Debug for ArcOrdMapWithIntersection<K, VD>
impl<K: Debug + DefTraits, VD: Debug + LatticeDef> Debug for ArcOrdMapWithIntersection<K, VD>
Source§impl<K: Default + DefTraits, VD: Default + LatticeDef> Default for ArcOrdMapWithIntersection<K, VD>
impl<K: Default + DefTraits, VD: Default + LatticeDef> Default for ArcOrdMapWithIntersection<K, VD>
Source§fn default() -> ArcOrdMapWithIntersection<K, VD>
fn default() -> ArcOrdMapWithIntersection<K, VD>
Returns the “default value” for a type. Read more
Source§impl<'de, K: DefTraits, VD: LatticeDef> Deserialize<'de> for ArcOrdMapWithIntersection<K, VD>
impl<'de, K: DefTraits, VD: LatticeDef> Deserialize<'de> for ArcOrdMapWithIntersection<K, VD>
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<K: Hash + DefTraits, VD: Hash + LatticeDef> Hash for ArcOrdMapWithIntersection<K, VD>
impl<K: Hash + DefTraits, VD: Hash + LatticeDef> Hash for ArcOrdMapWithIntersection<K, VD>
Source§impl<K: DefTraits, VD: LatticeDef> LatticeDef for ArcOrdMapWithIntersection<K, VD>
impl<K: DefTraits, VD: LatticeDef> LatticeDef for ArcOrdMapWithIntersection<K, VD>
Source§impl<K: Ord + DefTraits, VD: Ord + LatticeDef> Ord for ArcOrdMapWithIntersection<K, VD>
impl<K: Ord + DefTraits, VD: Ord + LatticeDef> Ord for ArcOrdMapWithIntersection<K, VD>
Source§fn cmp(&self, other: &ArcOrdMapWithIntersection<K, VD>) -> Ordering
fn cmp(&self, other: &ArcOrdMapWithIntersection<K, VD>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<K: PartialEq + DefTraits, VD: PartialEq + LatticeDef> PartialEq for ArcOrdMapWithIntersection<K, VD>
impl<K: PartialEq + DefTraits, VD: PartialEq + LatticeDef> PartialEq for ArcOrdMapWithIntersection<K, VD>
Source§fn eq(&self, other: &ArcOrdMapWithIntersection<K, VD>) -> bool
fn eq(&self, other: &ArcOrdMapWithIntersection<K, VD>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<K: PartialOrd + DefTraits, VD: PartialOrd + LatticeDef> PartialOrd for ArcOrdMapWithIntersection<K, VD>
impl<K: PartialOrd + DefTraits, VD: PartialOrd + LatticeDef> PartialOrd for ArcOrdMapWithIntersection<K, VD>
Source§impl<K: DefTraits, VD: LatticeDef> Serialize for ArcOrdMapWithIntersection<K, VD>
impl<K: DefTraits, VD: LatticeDef> Serialize for ArcOrdMapWithIntersection<K, VD>
impl<K: Eq + DefTraits, VD: Eq + LatticeDef> Eq for ArcOrdMapWithIntersection<K, VD>
impl<K: DefTraits, VD: LatticeDef> StructuralPartialEq for ArcOrdMapWithIntersection<K, VD>
Auto Trait Implementations§
impl<K, VD> Freeze for ArcOrdMapWithIntersection<K, VD>
impl<K, VD> RefUnwindSafe for ArcOrdMapWithIntersection<K, VD>where
K: RefUnwindSafe,
VD: RefUnwindSafe,
impl<K, VD> Send for ArcOrdMapWithIntersection<K, VD>
impl<K, VD> Sync for ArcOrdMapWithIntersection<K, VD>
impl<K, VD> Unpin for ArcOrdMapWithIntersection<K, VD>
impl<K, VD> UnsafeUnpin for ArcOrdMapWithIntersection<K, VD>
impl<K, VD> UnwindSafe for ArcOrdMapWithIntersection<K, VD>where
K: UnwindSafe,
VD: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more