pub type ProgramClauseData = ProgramClauseData<Interner>;
Aliased Type§
struct ProgramClauseData(pub Binders<ProgramClauseImplication<Interner>>);
Fields§
§0: Binders<ProgramClauseImplication<Interner>>
Implementations
§impl<I> ProgramClauseData<I>where
I: Interner,
impl<I> ProgramClauseData<I>where
I: Interner,
pub fn into_from_env_clause(self, interner: I) -> ProgramClauseData<I>
pub fn into_from_env_clause(self, interner: I) -> ProgramClauseData<I>
Change the program clause data into a FromEnv
program clause.
pub fn intern(self, interner: I) -> ProgramClause<I>
pub fn intern(self, interner: I) -> ProgramClause<I>
Intern the program clause data.
Trait Implementations
§impl<I> CouldMatch<DomainGoal<I>> for ProgramClauseData<I>where
I: Interner,
impl<I> CouldMatch<DomainGoal<I>> for ProgramClauseData<I>where
I: Interner,
§fn could_match(
&self,
interner: I,
db: &dyn UnificationDatabase<I>,
other: &DomainGoal<I>,
) -> bool
fn could_match( &self, interner: I, db: &dyn UnificationDatabase<I>, other: &DomainGoal<I>, ) -> bool
Checks whether
self
and other
could possibly match.§impl<I> HasInterner for ProgramClauseData<I>where
I: Interner,
impl<I> HasInterner for ProgramClauseData<I>where
I: Interner,
§impl<I> TypeFoldable<I> for ProgramClauseData<I>where
I: Interner,
impl<I> TypeFoldable<I> for ProgramClauseData<I>where
I: Interner,
§fn try_fold_with<E>(
self,
folder: &mut dyn FallibleTypeFolder<I, Error = E>,
outer_binder: DebruijnIndex,
) -> Result<ProgramClauseData<I>, E>
fn try_fold_with<E>( self, folder: &mut dyn FallibleTypeFolder<I, Error = E>, outer_binder: DebruijnIndex, ) -> Result<ProgramClauseData<I>, E>
Apply the given folder
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
A convenient alternative to
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 ProgramClauseData<I>where
I: Interner,
impl<I> TypeSuperFoldable<I> for ProgramClauseData<I>where
I: Interner,
§fn try_super_fold_with<E>(
self,
folder: &mut dyn FallibleTypeFolder<I, Error = E>,
outer_binder: DebruijnIndex,
) -> Result<ProgramClauseData<I>, E>
fn try_super_fold_with<E>( self, folder: &mut dyn FallibleTypeFolder<I, Error = E>, outer_binder: DebruijnIndex, ) -> Result<ProgramClauseData<I>, E>
Recursively folds the value.
§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
A convenient alternative to
try_super_fold_with
for use with
infallible folders. Do not override this method, to ensure coherence
with try_super_fold_with
.