pub enum CalcVerdict {
Lemma(Box<UntranslatedGoal>),
Decline(String),
}Expand description
The calculator’s verdict: a forced lemma (a rewritten goal ready for the candidate builder), or an honest decline naming why the lemma is not forced.
Variants§
Lemma(Box<UntranslatedGoal>)
Decline(String)
Trait Implementations§
Source§impl Clone for CalcVerdict
impl Clone for CalcVerdict
Source§fn clone(&self) -> CalcVerdict
fn clone(&self) -> CalcVerdict
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 moreAuto Trait Implementations§
impl Freeze for CalcVerdict
impl RefUnwindSafe for CalcVerdict
impl Send for CalcVerdict
impl Sync for CalcVerdict
impl Unpin for CalcVerdict
impl UnsafeUnpin for CalcVerdict
impl UnwindSafe for CalcVerdict
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