pub enum DdminGuarantee {
OneMinimalWithinCandidateSet,
Incomplete(DdminStopReason),
}Expand description
Guarantee reached by one DDMin run.
Variants§
OneMinimalWithinCandidateSet
The run completed and the result is one-minimal within the input candidate set.
Incomplete(DdminStopReason)
The run stopped before reaching the normal completion guarantee.
Trait Implementations§
Source§impl Clone for DdminGuarantee
impl Clone for DdminGuarantee
Source§fn clone(&self) -> DdminGuarantee
fn clone(&self) -> DdminGuarantee
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 DdminGuarantee
impl Debug for DdminGuarantee
Source§impl PartialEq for DdminGuarantee
impl PartialEq for DdminGuarantee
Source§fn eq(&self, other: &DdminGuarantee) -> bool
fn eq(&self, other: &DdminGuarantee) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for DdminGuarantee
impl Eq for DdminGuarantee
impl StructuralPartialEq for DdminGuarantee
Auto Trait Implementations§
impl Freeze for DdminGuarantee
impl RefUnwindSafe for DdminGuarantee
impl Send for DdminGuarantee
impl Sync for DdminGuarantee
impl Unpin for DdminGuarantee
impl UnsafeUnpin for DdminGuarantee
impl UnwindSafe for DdminGuarantee
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