pub struct ProofGoal<'tcx> {
pub path: Path,
pub items: Vec<RelevantItem<'tcx>>,
}Expand description
A proof goal for one (checkpoint, path) item: the set of relevant items
plus the path context needed to verify the target property.
Fields§
§path: PathPath being visited; path.target identifies the checkpoint.
items: Vec<RelevantItem<'tcx>>Items kept from the path.
Trait Implementations§
Auto Trait Implementations§
impl<'tcx> !RefUnwindSafe for ProofGoal<'tcx>
impl<'tcx> !UnwindSafe for ProofGoal<'tcx>
impl<'tcx> DynSend for ProofGoal<'tcx>
impl<'tcx> DynSync for ProofGoal<'tcx>
impl<'tcx> Freeze for ProofGoal<'tcx>
impl<'tcx> Send for ProofGoal<'tcx>
impl<'tcx> Sync for ProofGoal<'tcx>
impl<'tcx> Unpin for ProofGoal<'tcx>
impl<'tcx> UnsafeUnpin for ProofGoal<'tcx>
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more