Enum rustc_middle::traits::solve::CandidateSource
source · pub enum CandidateSource {
Impl(DefId),
BuiltinImpl(BuiltinImplSource),
ParamEnv(usize),
AliasBound,
}
Expand description
Possible ways the given goal can be proven.
Variants§
Impl(DefId)
A user written impl.
Examples
fn main() {
let x: Vec<u32> = Vec::new();
// This uses the impl from the standard library to prove `Vec<T>: Clone`.
let y = x.clone();
}
BuiltinImpl(BuiltinImplSource)
A builtin impl generated by the compiler. When adding a new special trait, try to use actual impls whenever possible. Builtin impls should only be used in cases where the impl cannot be manually be written.
Notable examples are auto traits, Sized
, and DiscriminantKind
.
For a list of all traits with builtin impls, check out the
EvalCtxt::assemble_builtin_impl_candidates
method.
ParamEnv(usize)
An assumption from the environment.
More precisely we’ve used the n-th
assumption in the param_env
.
Examples
fn is_clone<T: Clone>(x: T) -> (T, T) {
// This uses the assumption `T: Clone` from the `where`-bounds
// to prove `T: Clone`.
(x.clone(), x)
}
AliasBound
If the self type is an alias type, e.g. an opaque type or a projection, we know the bounds on that alias to hold even without knowing its concrete underlying type.
More precisely this candidate is using the n-th
bound in the item_bounds
of
the self type.
Examples
trait Trait {
type Assoc: Clone;
}
fn foo<T: Trait>(x: <T as Trait>::Assoc) {
// We prove `<T as Trait>::Assoc` by looking at the bounds on `Assoc` in
// in the trait definition.
let _y = x.clone();
}
Trait Implementations§
source§impl Clone for CandidateSource
impl Clone for CandidateSource
source§fn clone(&self) -> CandidateSource
fn clone(&self) -> CandidateSource
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CandidateSource
impl Debug for CandidateSource
source§impl PartialEq<CandidateSource> for CandidateSource
impl PartialEq<CandidateSource> for CandidateSource
source§fn eq(&self, other: &CandidateSource) -> bool
fn eq(&self, other: &CandidateSource) -> bool
self
and other
values to be equal, and is used
by ==
.impl Copy for CandidateSource
impl Eq for CandidateSource
impl StructuralEq for CandidateSource
impl StructuralPartialEq for CandidateSource
Auto Trait Implementations§
impl RefUnwindSafe for CandidateSource
impl Send for CandidateSource
impl Sync for CandidateSource
impl Unpin for CandidateSource
impl UnwindSafe for CandidateSource
Blanket Implementations§
source§impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere T: Copy,
fn allocate_on<'a>(self, arena: &'a Arena<'tcx>) -> &'a mut T
fn allocate_from_iter<'a>( arena: &'a Arena<'tcx>, iter: impl IntoIterator<Item = T> ) -> &'a mut [T]
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
source§impl<P> IntoQueryParam<P> for P
impl<P> IntoQueryParam<P> for P
fn into_query_param(self) -> P
source§impl<T> MaybeResult<T> for T
impl<T> MaybeResult<T> for T
source§impl<'tcx, T> ToPredicate<'tcx, T> for T
impl<'tcx, T> ToPredicate<'tcx, T> for T
fn to_predicate(self, _tcx: TyCtxt<'tcx>) -> T
source§impl<Tcx, T> Value<Tcx> for Twhere
Tcx: DepContext,
impl<Tcx, T> Value<Tcx> for Twhere Tcx: DepContext,
default fn from_cycle_error( tcx: Tcx, cycle: &[QueryInfo], _guar: ErrorGuaranteed ) -> T
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: 16 bytes
Size for each variant:
Impl
: 16 bytesBuiltinImpl
: 16 bytesParamEnv
: 16 bytesAliasBound
: 0 bytes