pub type Goal = Goal<Interner>;
Aliased Type§
struct Goal { /* private fields */ }
Implementations
§impl<I> Goal<I>where
I: Interner,
impl<I> Goal<I>where
I: Interner,
pub fn all<II>(interner: I, iter: II) -> Goal<I>where
II: IntoIterator<Item = Goal<I>>,
pub fn all<II>(interner: I, iter: II) -> Goal<I>where
II: IntoIterator<Item = Goal<I>>,
Creates a single goal that only holds if a list of goals holds.
§impl<I> Goal<I>where
I: Interner,
impl<I> Goal<I>where
I: Interner,
pub fn new(interner: I, interned: GoalData<I>) -> Goal<I>
pub fn new(interner: I, interned: GoalData<I>) -> Goal<I>
Create a new goal using GoalData
.
pub fn interned(&self) -> &<I as Interner>::InternedGoal
pub fn interned(&self) -> &<I as Interner>::InternedGoal
Gets the interned goal.
pub fn data(&self, interner: I) -> &GoalData<I>
pub fn data(&self, interner: I) -> &GoalData<I>
Gets the interned goal data.
pub fn quantify(
self,
interner: I,
kind: QuantifierKind,
binders: VariableKinds<I>,
) -> Goal<I>
pub fn quantify( self, interner: I, kind: QuantifierKind, binders: VariableKinds<I>, ) -> Goal<I>
Create a goal using a forall
or exists
quantifier.
pub fn negate(self, interner: I) -> Goal<I>
pub fn negate(self, interner: I) -> Goal<I>
Takes a goal G
and turns it into not { G }
.
pub fn compatible(self, interner: I) -> Goal<I>
pub fn compatible(self, interner: I) -> Goal<I>
Takes a goal G
and turns it into compatible { G }
.
pub fn implied_by(self, interner: I, predicates: ProgramClauses<I>) -> Goal<I>
pub fn implied_by(self, interner: I, predicates: ProgramClauses<I>) -> Goal<I>
Create an implication goal that holds if the predicates are true.
pub fn is_trivially_true(&self, interner: I) -> bool
pub fn is_trivially_true(&self, interner: I) -> bool
True if this goal is “trivially true” – i.e., no work is required to prove it.
Trait Implementations
§impl<I> CastTo<Goal<I>> for Goal<I>where
I: Interner,
impl<I> CastTo<Goal<I>> for Goal<I>where
I: Interner,
§impl<T, I> CastTo<Goal<I>> for Twhere
I: Interner,
T: CastTo<DomainGoal<I>>,
impl<T, I> CastTo<Goal<I>> for Twhere
I: Interner,
T: CastTo<DomainGoal<I>>,
§impl<I> GoalExt<I> for Goal<I>where
I: Interner,
impl<I> GoalExt<I> for Goal<I>where
I: Interner,
§fn into_peeled_goal(self, interner: I) -> UCanonical<InEnvironment<Goal<I>>>
fn into_peeled_goal(self, interner: I) -> UCanonical<InEnvironment<Goal<I>>>
Returns a canonical goal in which the outermost exists<>
and
forall<>
quantifiers (as well as implications) have been
“peeled” and are converted into free universal or existential
variables. Assumes that this goal is a “closed goal” which
does not – at present – contain any variables. Useful for
REPLs and tests but not much else.
§fn into_closed_goal(self, interner: I) -> UCanonical<InEnvironment<Goal<I>>>
fn into_closed_goal(self, interner: I) -> UCanonical<InEnvironment<Goal<I>>>
Given a goal with no free variables (a “closed” goal), creates
a canonical form suitable for solving. This is a suitable
choice if you don’t actually care about the values of any of
the variables within; otherwise, you might want
into_peeled_goal
.
§Panics
Will panic if this goal does in fact contain free variables.
§impl<I> HasInterner for Goal<I>where
I: Interner,
impl<I> HasInterner for Goal<I>where
I: Interner,
§impl<I> IsCoinductive<I> for Goal<I>where
I: Interner,
impl<I> IsCoinductive<I> for Goal<I>where
I: Interner,
§fn is_coinductive(&self, db: &dyn RustIrDatabase<I>) -> bool
fn is_coinductive(&self, db: &dyn RustIrDatabase<I>) -> bool
T: AutoTrait
,
or if it is of the form WellFormed(T: Trait)
where Trait
is any trait. The latter is needed for dealing with WF
requirements and cyclic traits, which generates cycles in the
proof tree which must not be rejected but instead must be
treated as a success.§impl<I> Ord for Goal<I>
impl<I> Ord for Goal<I>
§impl<I> PartialOrd for Goal<I>where
I: PartialOrd + Interner,
<I as Interner>::InternedGoal: PartialOrd,
impl<I> PartialOrd for Goal<I>where
I: PartialOrd + Interner,
<I as Interner>::InternedGoal: PartialOrd,
§impl<I> TypeFoldable<I> for Goal<I>where
I: Interner,
Folding a goal invokes the fold_goal
callback (which will, by
default, invoke super-fold).
impl<I> TypeFoldable<I> for Goal<I>where
I: Interner,
Folding a goal invokes the fold_goal
callback (which will, by
default, invoke super-fold).
§fn try_fold_with<E>(
self,
folder: &mut dyn FallibleTypeFolder<I, Error = E>,
outer_binder: DebruijnIndex,
) -> Result<Goal<I>, E>
fn try_fold_with<E>( self, folder: &mut dyn FallibleTypeFolder<I, Error = E>, outer_binder: DebruijnIndex, ) -> Result<Goal<I>, E>
folder
to self
; binders
is the
number of binders that are in scope when beginning the
folder. Typically binders
starts as 0, but is adjusted when
we encounter Binders<T>
in the IR or other similar
constructs.§fn fold_with(
self,
folder: &mut dyn TypeFolder<I, Error = Infallible>,
outer_binder: DebruijnIndex,
) -> Self
fn fold_with( self, folder: &mut dyn TypeFolder<I, Error = Infallible>, outer_binder: DebruijnIndex, ) -> Self
try_fold_with
for use with infallible
folders. Do not override this method, to ensure coherence with
try_fold_with
.§impl<I> TypeSuperFoldable<I> for Goal<I>where
I: Interner,
Superfold folds recursively.
impl<I> TypeSuperFoldable<I> for Goal<I>where
I: Interner,
Superfold folds recursively.
§fn try_super_fold_with<E>(
self,
folder: &mut dyn FallibleTypeFolder<I, Error = E>,
outer_binder: DebruijnIndex,
) -> Result<Goal<I>, E>
fn try_super_fold_with<E>( self, folder: &mut dyn FallibleTypeFolder<I, Error = E>, outer_binder: DebruijnIndex, ) -> Result<Goal<I>, E>
§fn super_fold_with(
self,
folder: &mut dyn TypeFolder<I, Error = Infallible>,
outer_binder: DebruijnIndex,
) -> Self
fn super_fold_with( self, folder: &mut dyn TypeFolder<I, Error = Infallible>, outer_binder: DebruijnIndex, ) -> Self
try_super_fold_with
for use with
infallible folders. Do not override this method, to ensure coherence
with try_super_fold_with
.§impl<I> TypeSuperVisitable<I> for Goal<I>where
I: Interner,
impl<I> TypeSuperVisitable<I> for Goal<I>where
I: Interner,
§fn super_visit_with<B>(
&self,
visitor: &mut dyn TypeVisitor<I, BreakTy = B>,
outer_binder: DebruijnIndex,
) -> ControlFlow<B>
fn super_visit_with<B>( &self, visitor: &mut dyn TypeVisitor<I, BreakTy = B>, outer_binder: DebruijnIndex, ) -> ControlFlow<B>
§impl<I> TypeVisitable<I> for Goal<I>where
I: Interner,
impl<I> TypeVisitable<I> for Goal<I>where
I: Interner,
§fn visit_with<B>(
&self,
visitor: &mut dyn TypeVisitor<I, BreakTy = B>,
outer_binder: DebruijnIndex,
) -> ControlFlow<B>
fn visit_with<B>( &self, visitor: &mut dyn TypeVisitor<I, BreakTy = B>, outer_binder: DebruijnIndex, ) -> ControlFlow<B>
visitor
to self
; binders
is the
number of binders that are in scope when beginning the
visitor. Typically binders
starts as 0, but is adjusted when
we encounter Binders<T>
in the IR or other similar
constructs.