pub struct DnfHashSet<V>(/* private fields */)
where
V: Eval + Eq + Hash;Expand description
A boolean expression in Disjunctive Normal Form, stored as a HashSet.
Implementations§
Trait Implementations§
Source§impl<V> Clone for DnfHashSet<V>
impl<V> Clone for DnfHashSet<V>
Source§fn clone(&self) -> DnfHashSet<V>
fn clone(&self) -> DnfHashSet<V>
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<V> Debug for DnfHashSet<V>
impl<V> Debug for DnfHashSet<V>
Source§impl<V> Default for DnfHashSet<V>
impl<V> Default for DnfHashSet<V>
Source§impl<V> Eval for DnfHashSet<V>
impl<V> Eval for DnfHashSet<V>
Source§impl<V> From<Expr<V>> for DnfHashSet<V>
impl<V> From<Expr<V>> for DnfHashSet<V>
Source§impl<I, V> From<I> for DnfHashSet<V>
impl<I, V> From<I> for DnfHashSet<V>
Source§impl<V> PartialEq for DnfHashSet<V>
impl<V> PartialEq for DnfHashSet<V>
Auto Trait Implementations§
impl<V> Freeze for DnfHashSet<V>
impl<V> RefUnwindSafe for DnfHashSet<V>where
V: RefUnwindSafe,
impl<V> Send for DnfHashSet<V>where
V: Send,
impl<V> Sync for DnfHashSet<V>where
V: Sync,
impl<V> Unpin for DnfHashSet<V>where
V: Unpin,
impl<V> UnwindSafe for DnfHashSet<V>where
V: 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