Type Alias DomainGoal

Source
pub type DomainGoal = DomainGoal<Interner>;

Aliased Type§

enum DomainGoal {
    Holds(WhereClause<Interner>),
    WellFormed(WellFormed<Interner>),
    FromEnv(FromEnv<Interner>),
    Normalize(Normalize<Interner>),
    IsLocal(Ty<Interner>),
    IsUpstream(Ty<Interner>),
    IsFullyVisible(Ty<Interner>),
    LocalImplAllowed(TraitRef<Interner>),
    Compatible,
    DownstreamType(Ty<Interner>),
    Reveal,
    ObjectSafe(TraitId<Interner>),
}

Variants§

§

Holds(WhereClause<Interner>)

Simple goal that is true if the where clause is true.

§

WellFormed(WellFormed<Interner>)

True if the type or trait ref is well-formed.

§

FromEnv(FromEnv<Interner>)

True if the trait ref can be derived from in-scope where clauses.

§

Normalize(Normalize<Interner>)

True if the alias type can be normalized to some other type

§

IsLocal(Ty<Interner>)

True if a type is considered to have been “defined” by the current crate. This is true for a struct Foo { } but false for a #[upstream] struct Foo { }. However, for fundamental types like Box<T>, it is true if T is local.

§

IsUpstream(Ty<Interner>)

True if a type is not considered to have been “defined” by the current crate. This is false for a struct Foo { } but true for a #[upstream] struct Foo { }. However, for fundamental types like Box<T>, it is true if T is upstream.

§

IsFullyVisible(Ty<Interner>)

True if a type and its input types are fully visible, known types. That is, there are no unknown type parameters anywhere in this type.

More formally, for each struct S<P0..Pn>: forall<P0..Pn> { IsFullyVisible(S<P0…Pn>) :- IsFullyVisible(P0), … IsFullyVisible(Pn) }

Note that any of these types can have lifetimes in their parameters too, but we only consider type parameters.

§

LocalImplAllowed(TraitRef<Interner>)

Used to dictate when trait impls are allowed in the current (local) crate based on the orphan rules.

LocalImplAllowed(T: Trait) is true if the type T is allowed to impl trait Trait in the current crate. Under the current rules, this is unconditionally true for all types if the Trait is considered to be “defined” in the current crate. If that is not the case, then LocalImplAllowed(T: Trait) can still be true if IsLocal(T) is true.

§

Compatible

Used to activate the “compatible modality” rules. Rules that introduce predicates that have to do with “all compatible universes” should depend on this clause so that they only apply if this is present.

§

DownstreamType(Ty<Interner>)

Used to indicate that a given type is in a downstream crate. Downstream crates contain the current crate at some level of their dependencies.

Since chalk does not actually see downstream types, this is usually introduced with implication on a fresh, universally quantified type.

forall { if (DownstreamType(T)) { /* … */ } }

This makes a new type T available and makes DownstreamType(T) provable for that type.

§

Reveal

Used to activate the “reveal mode”, in which opaque (impl Trait) types can be equated to their actual type.

§

ObjectSafe(TraitId<Interner>)

Used to indicate that a trait is object safe.

Implementations

§

impl<I> DomainGoal<I>
where I: Interner,

pub fn into_from_env_goal(self, interner: I) -> DomainGoal<I>

Convert Implemented(...) into FromEnv(...), but leave other goals unchanged.

pub fn inputs(&self, interner: I) -> Vec<GenericArg<I>>

Lists generic arguments that are inputs to this domain goal.

Trait Implementations§

Source§

impl HirDisplay for DomainGoal

Source§

fn hir_fmt(&self, f: &mut HirFormatter<'_>) -> Result<(), HirDisplayError>

Source§

fn into_displayable<'a>( &'a self, db: &'a dyn HirDatabase, max_size: Option<usize>, limited_size: Option<usize>, omit_verbose_types: bool, display_target: DisplayTarget, display_kind: DisplayKind, closure_style: ClosureStyle, show_container_bounds: bool, ) -> HirDisplayWrapper<'a, Self>
where Self: Sized,

Returns a Displayable type that is human-readable.
Source§

fn display<'a>( &'a self, db: &'a dyn HirDatabase, display_target: DisplayTarget, ) -> HirDisplayWrapper<'a, Self>
where Self: Sized,

Returns a Displayable type that is human-readable. Use this for showing types to the user (e.g. diagnostics)
Source§

fn display_truncated<'a>( &'a self, db: &'a dyn HirDatabase, max_size: Option<usize>, display_target: DisplayTarget, ) -> HirDisplayWrapper<'a, Self>
where Self: Sized,

Returns a Displayable type that is human-readable and tries to be succinct. Use this for showing types to the user where space is constrained (e.g. doc popups)
Source§

fn display_limited<'a>( &'a self, db: &'a dyn HirDatabase, limited_size: Option<usize>, display_target: DisplayTarget, ) -> HirDisplayWrapper<'a, Self>
where Self: Sized,

Returns a Displayable type that is human-readable and tries to limit the number of items inside. Use this for showing definitions which may contain too many items, like trait, struct, enum
Source§

fn display_source_code<'a>( &'a self, db: &'a dyn HirDatabase, module_id: ModuleId, allow_opaque: bool, ) -> Result<String, DisplaySourceCodeError>

Returns a String representation of self that can be inserted into the given module. Use this when generating code (e.g. assists)
Source§

fn display_test<'a>( &'a self, db: &'a dyn HirDatabase, display_target: DisplayTarget, ) -> HirDisplayWrapper<'a, Self>
where Self: Sized,

Returns a String representation of self for test purposes
Source§

fn display_with_container_bounds<'a>( &'a self, db: &'a dyn HirDatabase, show_container_bounds: bool, display_target: DisplayTarget, ) -> HirDisplayWrapper<'a, Self>
where Self: Sized,

Returns a String representation of self that shows the constraint from the container for functions
§

impl<I> CastTo<DomainGoal<I>> for DomainGoal<I>
where I: Interner,

§

fn cast_to( self, _interner: <DomainGoal<I> as HasInterner>::Interner, ) -> DomainGoal<I>

Cast a value to type T.
§

impl<T, I> CastTo<DomainGoal<I>> for T
where T: CastTo<WhereClause<I>>, I: Interner,

§

fn cast_to(self, interner: I) -> DomainGoal<I>

Cast a value to type T.
§

impl<I> Clone for DomainGoal<I>
where I: Clone + Interner,

§

fn clone(&self) -> DomainGoal<I>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl<I> Debug for DomainGoal<I>
where I: Interner,

§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<I> HasInterner for DomainGoal<I>
where I: Interner,

§

type Interner = I

The interner associated with the type.
§

impl<I> Hash for DomainGoal<I>
where I: Hash + Interner,

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl<I> PartialEq for DomainGoal<I>
where I: PartialEq + Interner,

§

fn eq(&self, other: &DomainGoal<I>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl<I> TypeFoldable<I> for DomainGoal<I>
where I: Interner,

§

fn try_fold_with<E>( self, folder: &mut dyn FallibleTypeFolder<I, Error = E>, outer_binder: DebruijnIndex, ) -> Result<DomainGoal<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

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> TypeSuperVisitable<I> for DomainGoal<I>
where I: Interner,

§

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 DomainGoal<I>
where I: Interner,

§

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.
§

impl<I> Zip<I> for DomainGoal<I>
where I: Interner,

§

fn zip_with<Z>( zipper: &mut Z, variance: Variance, a: &DomainGoal<I>, b: &DomainGoal<I>, ) -> Result<(), NoSolution>
where Z: Zipper<I>,

Uses the zipper to walk through two values, ensuring that they match.
§

impl<I> Copy for DomainGoal<I>
where I: Interner, <I as Interner>::InternedSubstitution: Copy, <I as Interner>::InternedLifetime: Copy, <I as Interner>::InternedType: Copy,

§

impl<I> Eq for DomainGoal<I>
where I: Eq + Interner,

§

impl<I> StructuralPartialEq for DomainGoal<I>
where I: Interner,