Enum rustc_trait_selection::traits::project::ProjectionTyCandidate [−][src]
enum ProjectionTyCandidate<'tcx> {
ParamEnv(PolyProjectionPredicate<'tcx>),
TraitDef(PolyProjectionPredicate<'tcx>),
Object(PolyProjectionPredicate<'tcx>),
Select(Selection<'tcx>),
}
Variants
ParamEnv(PolyProjectionPredicate<'tcx>)
From a where-clause in the env or object type
Tuple Fields of ParamEnv
0: PolyProjectionPredicate<'tcx>
TraitDef(PolyProjectionPredicate<'tcx>)
From the definition of Trait
when you have something like <::B as Trait2>::C
Tuple Fields of TraitDef
0: PolyProjectionPredicate<'tcx>
Object(PolyProjectionPredicate<'tcx>)
Bounds specified on an object type
Tuple Fields of Object
0: PolyProjectionPredicate<'tcx>
Select(Selection<'tcx>)
From an “impl” (or a “pseudo-impl” returned by select)
Tuple Fields of Select
0: Selection<'tcx>
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl<'tcx> !RefUnwindSafe for ProjectionTyCandidate<'tcx>
impl<'tcx> !Send for ProjectionTyCandidate<'tcx>
impl<'tcx> !Sync for ProjectionTyCandidate<'tcx>
impl<'tcx> Unpin for ProjectionTyCandidate<'tcx>
impl<'tcx> !UnwindSafe for ProjectionTyCandidate<'tcx>
Blanket Implementations
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: 80 bytes
Size for each variant:
ParamEnv
: 32 bytesTraitDef
: 32 bytesObject
: 32 bytesSelect
: 72 bytes