pub type ClauseKind<'tcx> = ClauseKind<TyCtxt<'tcx>>;Aliased Type§
enum ClauseKind<'tcx> {
Trait(TraitPredicate<TyCtxt<'tcx>>),
RegionOutlives(OutlivesPredicate<TyCtxt<'tcx>, Region<'tcx>>),
TypeOutlives(OutlivesPredicate<TyCtxt<'tcx>, Ty<'tcx>>),
Projection(ProjectionPredicate<TyCtxt<'tcx>>),
ConstArgHasType(Const<'tcx>, Ty<'tcx>),
WellFormed(GenericArg<'tcx>),
ConstEvaluatable(Const<'tcx>),
HostEffect(HostEffectPredicate<TyCtxt<'tcx>>),
}Variants§
Trait(TraitPredicate<TyCtxt<'tcx>>)
Corresponds to where Foo: Bar<A, B, C>. Foo here would be
the Self type of the trait reference and A, B, and C
would be the type parameters.
RegionOutlives(OutlivesPredicate<TyCtxt<'tcx>, Region<'tcx>>)
where 'a: 'r
TypeOutlives(OutlivesPredicate<TyCtxt<'tcx>, Ty<'tcx>>)
where T: 'r
Projection(ProjectionPredicate<TyCtxt<'tcx>>)
where <T as TraitRef>::Name == X, approximately.
See the ProjectionPredicate struct for details.
ConstArgHasType(Const<'tcx>, Ty<'tcx>)
Ensures that a const generic argument to a parameter const N: u8
is of type u8.
WellFormed(GenericArg<'tcx>)
No syntax: T well-formed.
ConstEvaluatable(Const<'tcx>)
Constant initializer must evaluate successfully.
HostEffect(HostEffectPredicate<TyCtxt<'tcx>>)
Enforces the constness of the predicate we’re calling. Like a projection goal from a where clause, it’s always going to be paired with a corresponding trait clause; this just enforces the constness of that implementation.
Trait Implementations§
Source§impl ParameterizedOverTcx for ClauseKind<'static>
impl ParameterizedOverTcx for ClauseKind<'static>
Source§impl<'tcx, P: PrettyPrinter<'tcx>> Print<'tcx, P> for ClauseKind<'tcx>
impl<'tcx, P: PrettyPrinter<'tcx>> Print<'tcx, P> for ClauseKind<'tcx>
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: 32 bytes
Size for each variant:
Trait: 24 bytesRegionOutlives: 16 bytesTypeOutlives: 16 bytesProjection: 24 bytesConstArgHasType: 16 bytesWellFormed: 8 bytesConstEvaluatable: 8 bytesHostEffect: 24 bytes