pub struct CoqProof {
pub tactics: Vec<CoqTactic>,
pub admitted: bool,
}Expand description
A Coq proof script: Proof. ... Qed. (or Admitted.)
Fields§
§tactics: Vec<CoqTactic>Tactic steps
admitted: boolUse Admitted. instead of Qed.
Implementations§
Trait Implementations§
impl StructuralPartialEq for CoqProof
Auto Trait Implementations§
impl Freeze for CoqProof
impl RefUnwindSafe for CoqProof
impl Send for CoqProof
impl Sync for CoqProof
impl Unpin for CoqProof
impl UnsafeUnpin for CoqProof
impl UnwindSafe for CoqProof
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