pub struct EagerSolution<Node: Debug + Hash + Eq> { /* private fields */ }
Expand description
A LazySolution
with a Vec<Node>
for next_to_search
. This is primarily
for debugging.
Trait Implementations§
impl<Node: Eq + Debug + Hash + Eq> Eq for EagerSolution<Node>
impl<Node: Debug + Hash + Eq> StructuralPartialEq for EagerSolution<Node>
Auto Trait Implementations§
impl<Node> Freeze for EagerSolution<Node>
impl<Node> RefUnwindSafe for EagerSolution<Node>where
Node: RefUnwindSafe,
impl<Node> Send for EagerSolution<Node>where
Node: Send,
impl<Node> Sync for EagerSolution<Node>where
Node: Sync,
impl<Node> Unpin for EagerSolution<Node>where
Node: Unpin,
impl<Node> UnwindSafe for EagerSolution<Node>where
Node: 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
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.