pub struct CandidateSet {
pub pairs: Vec<CandidatePair>,
pub stats: CandidateStats,
}Expand description
The candidate stage’s output: exact-hash pairs plus funnel statistics.
Fields§
§pairs: Vec<CandidatePair>Candidate pairs, deterministically ordered.
stats: CandidateStatsWhat the stage saw and dropped.
Trait Implementations§
Source§impl Clone for CandidateSet
impl Clone for CandidateSet
Source§fn clone(&self) -> CandidateSet
fn clone(&self) -> CandidateSet
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CandidateSet
impl Debug for CandidateSet
impl Eq for CandidateSet
Source§impl PartialEq for CandidateSet
impl PartialEq for CandidateSet
impl StructuralPartialEq for CandidateSet
Auto Trait Implementations§
impl Freeze for CandidateSet
impl RefUnwindSafe for CandidateSet
impl Send for CandidateSet
impl Sync for CandidateSet
impl Unpin for CandidateSet
impl UnsafeUnpin for CandidateSet
impl UnwindSafe for CandidateSet
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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.