pub type ProgramClause = ProgramClause<Interner>;
Aliased Type§
struct ProgramClause { /* private fields */ }
Implementations
§impl<I> ProgramClause<I>where
I: Interner,
impl<I> ProgramClause<I>where
I: Interner,
pub fn new(interner: I, clause: ProgramClauseData<I>) -> ProgramClause<I>
pub fn new(interner: I, clause: ProgramClauseData<I>) -> ProgramClause<I>
Create a new program clause using ProgramClauseData
.
pub fn into_from_env_clause(self, interner: I) -> ProgramClause<I>
pub fn into_from_env_clause(self, interner: I) -> ProgramClause<I>
Change the clause into a FromEnv
clause.
pub fn interned(&self) -> &<I as Interner>::InternedProgramClause
pub fn interned(&self) -> &<I as Interner>::InternedProgramClause
Get the interned program clause.
pub fn data(&self, interner: I) -> &ProgramClauseData<I>
pub fn data(&self, interner: I) -> &ProgramClauseData<I>
Get the program clause data.
Trait Implementations
§impl<I> CastTo<ProgramClause<I>> for ProgramClause<I>where
I: Interner,
impl<I> CastTo<ProgramClause<I>> for ProgramClause<I>where
I: Interner,
§impl<T, I> CastTo<ProgramClause<I>> for Twhere
T: CastTo<DomainGoal<I>>,
I: Interner,
impl<T, I> CastTo<ProgramClause<I>> for Twhere
T: CastTo<DomainGoal<I>>,
I: Interner,
§impl<I> CouldMatch<DomainGoal<I>> for ProgramClause<I>where
I: Interner,
impl<I> CouldMatch<DomainGoal<I>> for ProgramClause<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 ProgramClause<I>where
I: Interner,
impl<I> HasInterner for ProgramClause<I>where
I: Interner,
§impl<I> Ord for ProgramClause<I>
impl<I> Ord for ProgramClause<I>
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
§impl<I> PartialOrd for ProgramClause<I>where
I: PartialOrd + Interner,
<I as Interner>::InternedProgramClause: PartialOrd,
impl<I> PartialOrd for ProgramClause<I>where
I: PartialOrd + Interner,
<I as Interner>::InternedProgramClause: PartialOrd,
§impl<I> TypeFoldable<I> for ProgramClause<I>where
I: Interner,
Folding a program clause invokes the fold_program_clause
callback on the folder (which will, by default, invoke the
super_fold_with
method on the program clause).
impl<I> TypeFoldable<I> for ProgramClause<I>where
I: Interner,
Folding a program clause invokes the fold_program_clause
callback on the folder (which will, by default, invoke the
super_fold_with
method on the program clause).
§fn try_fold_with<E>(
self,
folder: &mut dyn FallibleTypeFolder<I, Error = E>,
outer_binder: DebruijnIndex,
) -> Result<ProgramClause<I>, E>
fn try_fold_with<E>( self, folder: &mut dyn FallibleTypeFolder<I, Error = E>, outer_binder: DebruijnIndex, ) -> Result<ProgramClause<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 ProgramClause<I>where
I: Interner,
impl<I> TypeSuperFoldable<I> for ProgramClause<I>where
I: Interner,
§fn try_super_fold_with<E>(
self,
folder: &mut dyn FallibleTypeFolder<I, Error = E>,
outer_binder: DebruijnIndex,
) -> Result<ProgramClause<I>, E>
fn try_super_fold_with<E>( self, folder: &mut dyn FallibleTypeFolder<I, Error = E>, outer_binder: DebruijnIndex, ) -> Result<ProgramClause<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
.§impl<I> TypeSuperVisitable<I> for ProgramClause<I>where
I: Interner,
impl<I> TypeSuperVisitable<I> for ProgramClause<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>
Recursively visits the type contents.
§impl<I> TypeVisitable<I> for ProgramClause<I>where
I: Interner,
impl<I> TypeVisitable<I> for ProgramClause<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>
Apply the given visitor
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.