pub struct Goal {
pub hyps: Vec<Hyp>,
pub target: ProofExpr,
}Expand description
A single proof obligation: prove target under the local hyps.
Fields§
§hyps: Vec<Hyp>Named local hypotheses in scope (introduced by intro/cases, or premises).
target: ProofExprThe proposition to prove.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Goal
impl RefUnwindSafe for Goal
impl Send for Goal
impl Sync for Goal
impl Unpin for Goal
impl UnsafeUnpin for Goal
impl UnwindSafe for Goal
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