pub struct ProofStep {
pub rule_name: String,
pub goal: String,
pub sub_steps: Vec<ProofStep>,
pub depth: usize,
}Expand description
Single step in a proof
Fields§
§rule_name: StringRule that was applied
goal: StringGoal this step proved
sub_steps: Vec<ProofStep>Sub-steps (for nested proofs)
depth: usizeDepth in the proof tree
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ProofStep
impl RefUnwindSafe for ProofStep
impl Send for ProofStep
impl Sync for ProofStep
impl Unpin for ProofStep
impl UnwindSafe for ProofStep
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