pub struct TacticRunResult {
pub state: ProofState,
pub diagnostics: Vec<Diagnostic>,
}Expand description
Result of running tactics over a proof state.
Fields§
§state: ProofState§diagnostics: Vec<Diagnostic>Trait Implementations§
Source§impl Clone for TacticRunResult
impl Clone for TacticRunResult
Source§fn clone(&self) -> TacticRunResult
fn clone(&self) -> TacticRunResult
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 TacticRunResult
impl Debug for TacticRunResult
Source§impl PartialEq for TacticRunResult
impl PartialEq for TacticRunResult
impl StructuralPartialEq for TacticRunResult
Auto Trait Implementations§
impl Freeze for TacticRunResult
impl RefUnwindSafe for TacticRunResult
impl Send for TacticRunResult
impl Sync for TacticRunResult
impl Unpin for TacticRunResult
impl UnsafeUnpin for TacticRunResult
impl UnwindSafe for TacticRunResult
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