pub enum DdminStopReason {
MaxOracleCallsReached,
BaselineNotInteresting,
}Expand description
Reason DDMin stopped before reaching its normal guarantee.
Variants§
MaxOracleCallsReached
The configured oracle-call limit was reached.
BaselineNotInteresting
The original candidate list was not interesting.
Trait Implementations§
Source§impl Clone for DdminStopReason
impl Clone for DdminStopReason
Source§fn clone(&self) -> DdminStopReason
fn clone(&self) -> DdminStopReason
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 DdminStopReason
impl Debug for DdminStopReason
Source§impl PartialEq for DdminStopReason
impl PartialEq for DdminStopReason
Source§fn eq(&self, other: &DdminStopReason) -> bool
fn eq(&self, other: &DdminStopReason) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for DdminStopReason
impl Eq for DdminStopReason
impl StructuralPartialEq for DdminStopReason
Auto Trait Implementations§
impl Freeze for DdminStopReason
impl RefUnwindSafe for DdminStopReason
impl Send for DdminStopReason
impl Sync for DdminStopReason
impl Unpin for DdminStopReason
impl UnsafeUnpin for DdminStopReason
impl UnwindSafe for DdminStopReason
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