pub enum AliasTermKind {
    ProjectionTy,
    InherentTy,
    OpaqueTy,
    FreeTy,
    UnevaluatedConst,
    ProjectionConst,
    FreeConst,
    InherentConst,
}Variants§
ProjectionTy
A projection <Type as Trait>::AssocType.
Can get normalized away if monomorphic enough.
InherentTy
An associated type in an inherent impl
OpaqueTy
An opaque type (usually from impl Trait in type aliases or function return types)
Can only be normalized away in PostAnalysis mode or its defining scope.
FreeTy
A free type alias that actually checks its trait bounds. Currently only used if the type alias references opaque types. Can always be normalized away.
UnevaluatedConst
An unevaluated anonymous constants.
ProjectionConst
An unevaluated const coming from an associated const.
FreeConst
A top level const item not part of a trait or impl.
InherentConst
An associated const in an inherent impl
Implementations§
Trait Implementations§
Source§impl Clone for AliasTermKind
 
impl Clone for AliasTermKind
Source§fn clone(&self) -> AliasTermKind
 
fn clone(&self) -> AliasTermKind
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for AliasTermKind
 
impl Debug for AliasTermKind
Source§impl<__D> Decodable<__D> for AliasTermKindwhere
    __D: SpanDecoder,
 
impl<__D> Decodable<__D> for AliasTermKindwhere
    __D: SpanDecoder,
fn decode(__decoder: &mut __D) -> AliasTermKind
Source§impl<__E> Encodable<__E> for AliasTermKindwhere
    __E: SpanEncoder,
 
impl<__E> Encodable<__E> for AliasTermKindwhere
    __E: SpanEncoder,
Source§impl From<AliasTyKind> for AliasTermKind
 
impl From<AliasTyKind> for AliasTermKind
Source§fn from(value: AliasTyKind) -> AliasTermKind
 
fn from(value: AliasTyKind) -> AliasTermKind
Source§impl Hash for AliasTermKind
 
impl Hash for AliasTermKind
Source§impl<__CTX> HashStable<__CTX> for AliasTermKind
 
impl<__CTX> HashStable<__CTX> for AliasTermKind
fn hash_stable( &self, __hcx: &mut __CTX, __hasher: &mut StableHasher<SipHasher128>, )
Source§impl Ord for AliasTermKind
 
impl Ord for AliasTermKind
Source§fn cmp(&self, other: &AliasTermKind) -> Ordering
 
fn cmp(&self, other: &AliasTermKind) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
    Self: Sized,
 
fn max(self, other: Self) -> Selfwhere
    Self: Sized,
Source§impl PartialEq for AliasTermKind
 
impl PartialEq for AliasTermKind
Source§impl PartialOrd for AliasTermKind
 
impl PartialOrd for AliasTermKind
impl Copy for AliasTermKind
impl Eq for AliasTermKind
impl StructuralPartialEq for AliasTermKind
Auto Trait Implementations§
impl DynSend for AliasTermKind
impl DynSync for AliasTermKind
impl Freeze for AliasTermKind
impl RefUnwindSafe for AliasTermKind
impl Send for AliasTermKind
impl Sync for AliasTermKind
impl Unpin for AliasTermKind
impl UnwindSafe for AliasTermKind
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(self, arena: &'tcx Arena<'tcx>) -> &'tcx mut T
fn allocate_from_iter( arena: &'tcx Arena<'tcx>, iter: impl IntoIterator<Item = T>, ) -> &'tcx mut [T]
Source§impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
    T: Copy,
 
impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
    T: Copy,
fn allocate_on(self, arena: &'tcx Arena<'tcx>) -> &'tcx mut T
fn allocate_from_iter( arena: &'tcx Arena<'tcx>, iter: impl IntoIterator<Item = T>, ) -> &'tcx 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> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
Source§impl<T, R> CollectAndApply<T, R> for T
 
impl<T, R> CollectAndApply<T, R> for T
Source§impl<Q, K> Comparable<K> for Q
 
impl<Q, K> Comparable<K> for Q
Source§impl<Tcx, T> DepNodeParams<Tcx> for T
 
impl<Tcx, T> DepNodeParams<Tcx> for T
default fn fingerprint_style() -> FingerprintStyle
Source§default fn to_fingerprint(&self, tcx: Tcx) -> Fingerprint
 
default fn to_fingerprint(&self, tcx: Tcx) -> Fingerprint
default fn to_debug_str(&self, tcx: Tcx) -> String
Source§default fn recover(_: Tcx, _: &DepNode) -> Option<T>
 
default fn recover(_: Tcx, _: &DepNode) -> Option<T>
DepNode,
something which is needed when forcing DepNodes during red-green
evaluation. The query system will only call this method if
fingerprint_style() is not FingerprintStyle::Opaque.
It is always valid to return None here, in which case incremental
compilation will treat the query as having changed instead of forcing it.Source§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.Source§impl<T> Instrument for T
 
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§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<T> Pointable for T
 
impl<T> Pointable for T
Source§impl<I, T, U> Upcast<I, U> for Twhere
    U: UpcastFrom<I, T>,
 
impl<I, T, U> Upcast<I, U> for Twhere
    U: UpcastFrom<I, T>,
Source§impl<I, T> UpcastFrom<I, T> for T
 
impl<I, T> UpcastFrom<I, T> for T
fn upcast_from(from: T, _tcx: I) -> 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_error: &CycleError, _guar: ErrorGuaranteed, ) -> T
Source§impl<T> WithSubscriber for T
 
impl<T> WithSubscriber for T
Source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
 
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
Source§fn with_current_subscriber(self) -> WithDispatch<Self>
 
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<T> ErasedDestructor for Twhere
    T: 'static,
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:
- ProjectionTy: 0 bytes
- InherentTy: 0 bytes
- OpaqueTy: 0 bytes
- FreeTy: 0 bytes
- UnevaluatedConst: 0 bytes
- ProjectionConst: 0 bytes
- FreeConst: 0 bytes
- InherentConst: 0 bytes