Enum rustc_middle::ty::util::CheckRegions
source · pub enum CheckRegions {
No,
OnlyEarlyBound,
Bound,
}
Expand description
Used as an input to TyCtxt::uses_unique_generic_params
.
Variants§
No
OnlyEarlyBound
Only permit early bound regions. This is useful for Adts which can never have late bound regions.
Bound
Permit both late bound and early bound regions. Use this for functions, which frequently have late bound regions.
Trait Implementations§
source§impl Clone for CheckRegions
impl Clone for CheckRegions
source§fn clone(&self) -> CheckRegions
fn clone(&self) -> CheckRegions
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CheckRegions
impl Debug for CheckRegions
source§impl PartialEq<CheckRegions> for CheckRegions
impl PartialEq<CheckRegions> for CheckRegions
source§fn eq(&self, other: &CheckRegions) -> bool
fn eq(&self, other: &CheckRegions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for CheckRegions
impl Eq for CheckRegions
impl StructuralEq for CheckRegions
impl StructuralPartialEq for CheckRegions
Auto Trait Implementations§
impl RefUnwindSafe for CheckRegions
impl Send for CheckRegions
impl Sync for CheckRegions
impl Unpin for CheckRegions
impl UnwindSafe for CheckRegions
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
Mutably borrows from an owned value. Read more
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: 1 byte
Size for each variant:
No
: 0 bytesOnlyEarlyBound
: 0 bytesBound
: 0 bytes