Struct rustc_middle::ty::InstantiatedPredicates [−][src]
pub struct InstantiatedPredicates<'tcx> {
pub predicates: Vec<Predicate<'tcx>>,
pub spans: Vec<Span>,
}
Expand description
Represents the bounds declared on a particular set of type
parameters. Should eventually be generalized into a flag list of
where-clauses. You can obtain an InstantiatedPredicates
list from a
GenericPredicates
by using the instantiate
method. Note that this method
reflects an important semantic invariant of InstantiatedPredicates
: while
the GenericPredicates
are expressed in terms of the bound type
parameters of the impl/trait/whatever, an InstantiatedPredicates
instance
represented a set of bounds for some particular instantiation,
meaning that the generic parameters have been substituted with
their values.
Example:
struct Foo<T, U: Bar<T>> { ... }
Here, the GenericPredicates
for Foo
would contain a list of bounds like
[[], [U:Bar<T>]]
. Now if there were some particular reference
like Foo<isize,usize>
, then the InstantiatedPredicates
would be [[], [usize:Bar<isize>]]
.
Fields
predicates: Vec<Predicate<'tcx>>
spans: Vec<Span>
Implementations
Trait Implementations
fn super_visit_with<__F: TypeVisitor<'tcx>>(
&self,
__folder: &mut __F
) -> ControlFlow<__F::BreakTy>
Returns true
if self
has any late-bound regions that are either
bound by binder
or bound by some binder outside of binder
.
If binder
is ty::INNERMOST
, this indicates whether
there are any late-bound regions that appear free. Read more
Returns true
if this self
has any regions that escape binder
(and
hence are not bound by it). Read more
“Free” regions in this context means that it has any region that is not (a) erased or (b) late-bound. Read more
True if there are any un-erased free regions.
Indicates whether this value definitely references only ‘global’ generic parameters that are the same regardless of what fn we are in. This is used for caching. Read more
Indicates whether this value references only ‘global’ generic parameters that are the same regardless of what fn we are in. This is used for caching. Read more
True if there are any late-bound regions
Indicates whether this value still has parameters/placeholders/inference variables
which could be replaced later, in a way that would change the results of impl
specialization. Read more
Auto Trait Implementations
impl<'tcx> !RefUnwindSafe for InstantiatedPredicates<'tcx>
impl<'tcx> !Send for InstantiatedPredicates<'tcx>
impl<'tcx> !Sync for InstantiatedPredicates<'tcx>
impl<'tcx> Unpin for InstantiatedPredicates<'tcx>
impl<'tcx> !UnwindSafe for InstantiatedPredicates<'tcx>
Blanket Implementations
Mutably borrows from an owned value. Read more
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 48 bytes