[][src]Struct ra_ap_hir_ty::Canonical

pub struct Canonical<T> {
    pub value: T,
    pub kinds: Arc<[TyKind]>,
}

Basically a claim (currently not validated / checked) that the contained type / trait ref contains no inference variables; any inference variables it contained have been replaced by bound variables, and kinds tells us how many there are and whether they were normal or float/int variables. This is used to erase irrelevant differences between types before using them in queries.

Fields

value: Tkinds: Arc<[TyKind]>

Implementations

impl<T> Canonical<T>[src]

pub fn new(value: T, kinds: impl IntoIterator<Item = TyKind>) -> Self[src]

Trait Implementations

impl<T: Clone> Clone for Canonical<T>[src]

impl<T: Debug> Debug for Canonical<T>[src]

impl<T: Eq> Eq for Canonical<T>[src]

impl<T: Hash> Hash for Canonical<T>[src]

impl<T: PartialEq> PartialEq<Canonical<T>> for Canonical<T>[src]

impl<T> StructuralEq for Canonical<T>[src]

impl<T> StructuralPartialEq for Canonical<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Canonical<T> where
    T: RefUnwindSafe

impl<T> Send for Canonical<T> where
    T: Send

impl<T> Sync for Canonical<T> where
    T: Sync

impl<T> Unpin for Canonical<T> where
    T: Unpin

impl<T> UnwindSafe for Canonical<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Cast for T[src]

impl<T> CloneAny for T where
    T: Clone + Any

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.