pub enum ProofStep {
Axiom {
conclusion: String,
},
Inference {
rule: String,
premises: SmallVec<[ProofNodeId; 4]>,
conclusion: String,
args: SmallVec<[String; 2]>,
},
}Expand description
A single proof step.
Variants§
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 UnsafeUnpin 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