Type Alias CanonicalInput
pub type CanonicalInput<I, T = <I as Interner>::Predicate> = CanonicalQueryInput<I, QueryInput<I, T>>;
Aliased Type§
struct CanonicalInput<I, T = <I as Interner>::Predicate> {
pub canonical: Canonical<I, QueryInput<I, T>>,
pub typing_mode: TypingMode<I>,
}
Fields§
§canonical: Canonical<I, QueryInput<I, T>>
§typing_mode: TypingMode<I>
Layout§
Note: Encountered an error during type layout; the type failed to be normalized.
Trait Implementations
§impl<I, V> Clone for CanonicalQueryInput<I, V>
impl<I, V> Clone for CanonicalQueryInput<I, V>
§fn clone(&self) -> CanonicalQueryInput<I, V>
fn clone(&self) -> CanonicalQueryInput<I, V>
Returns a copy of the value. Read more
Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl<I, V> Debug for CanonicalQueryInput<I, V>
impl<I, V> Debug for CanonicalQueryInput<I, V>
§impl<I, V, __D> Decodable<__D> for CanonicalQueryInput<I, V>
impl<I, V, __D> Decodable<__D> for CanonicalQueryInput<I, V>
fn decode(__decoder: &mut __D) -> CanonicalQueryInput<I, V>
§impl<I, V, __E> Encodable<__E> for CanonicalQueryInput<I, V>
impl<I, V, __E> Encodable<__E> for CanonicalQueryInput<I, V>
§impl<I, V> Hash for CanonicalQueryInput<I, V>
impl<I, V> Hash for CanonicalQueryInput<I, V>
§impl<I, V, __CTX> HashStable<__CTX> for CanonicalQueryInput<I, V>
impl<I, V, __CTX> HashStable<__CTX> for CanonicalQueryInput<I, V>
fn hash_stable( &self, __hcx: &mut __CTX, __hasher: &mut StableHasher<SipHasher128>, )
Source§impl<'tcx, T> Key for CanonicalQueryInput<TyCtxt<'tcx>, T>where
T: Clone,
impl<'tcx, T> Key for CanonicalQueryInput<TyCtxt<'tcx>, T>where
T: Clone,
Canonical query goals correspond to abstract trait operations that are not tied to any crate in particular.
type Cache<V> = DefaultCache<CanonicalQueryInput<TyCtxt<'tcx>, T>, V>
Source§fn default_span(&self, _tcx: TyCtxt<'_>) -> Span
fn default_span(&self, _tcx: TyCtxt<'_>) -> Span
In the event that a cycle occurs, if no explicit span has been
given for a query with key
self
, what span should we use?