pub enum RefusalReason {
SampleTooSmall,
SingleSignalOnly,
}Expand description
Reasons a resolve call was refused (not merged, not created).
Variants§
SampleTooSmall
HNSW-local sample below MIN_SAMPLE_SIZE; threshold cannot
be derived with statistical significance.
SingleSignalOnly
Best candidate passed only one of the three consensus signals.
Trait Implementations§
Source§impl Clone for RefusalReason
impl Clone for RefusalReason
Source§fn clone(&self) -> RefusalReason
fn clone(&self) -> RefusalReason
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 Debug for RefusalReason
impl Debug for RefusalReason
Source§impl PartialEq for RefusalReason
impl PartialEq for RefusalReason
impl Copy for RefusalReason
impl Eq for RefusalReason
impl StructuralPartialEq for RefusalReason
Auto Trait Implementations§
impl Freeze for RefusalReason
impl RefUnwindSafe for RefusalReason
impl Send for RefusalReason
impl Sync for RefusalReason
impl Unpin for RefusalReason
impl UnsafeUnpin for RefusalReason
impl UnwindSafe for RefusalReason
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