pub struct SemanticCandidateConfig {
pub max_bucket_members: usize,
pub max_candidate_pairs: usize,
}Expand description
Limits for the registered SOG candidate index.
Both limits cut whole index buckets. Cutting part of a bucket would make the answer depend on incidental graph order, and could leave a reported group with unexamined peers that look equally eligible.
Fields§
§max_bucket_members: usizeLargest operation-sequence bucket that may enter verification.
max_candidate_pairs: usizeLargest number of candidate pairs the extraction may return.
Trait Implementations§
Source§impl Clone for SemanticCandidateConfig
impl Clone for SemanticCandidateConfig
Source§fn clone(&self) -> SemanticCandidateConfig
fn clone(&self) -> SemanticCandidateConfig
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 moreimpl Copy for SemanticCandidateConfig
Source§impl Debug for SemanticCandidateConfig
impl Debug for SemanticCandidateConfig
Source§impl Default for SemanticCandidateConfig
impl Default for SemanticCandidateConfig
impl Eq for SemanticCandidateConfig
Source§impl PartialEq for SemanticCandidateConfig
impl PartialEq for SemanticCandidateConfig
impl StructuralPartialEq for SemanticCandidateConfig
Auto Trait Implementations§
impl Freeze for SemanticCandidateConfig
impl RefUnwindSafe for SemanticCandidateConfig
impl Send for SemanticCandidateConfig
impl Sync for SemanticCandidateConfig
impl Unpin for SemanticCandidateConfig
impl UnsafeUnpin for SemanticCandidateConfig
impl UnwindSafe for SemanticCandidateConfig
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.