pub struct Ty<I: Interner> {
pub(crate) interned: I::InternedType,
}
Expand description
A Rust type. The actual type data is stored in TyKind
.
Fields§
§interned: I::InternedType
Implementations§
source§impl<I: Interner> Ty<I>
impl<I: Interner> Ty<I>
sourcepub fn interned(&self) -> &I::InternedType
pub fn interned(&self) -> &I::InternedType
Gets the interned type.
sourcepub fn well_formed(&self) -> WellFormed<I>
pub fn well_formed(&self) -> WellFormed<I>
Creates a WF-constraint for this type.
sourcepub fn into_from_env_goal(self, interner: I) -> DomainGoal<I>
pub fn into_from_env_goal(self, interner: I) -> DomainGoal<I>
Creates a domain goal FromEnv(T)
where T
is this type.
sourcepub fn bound_var(&self, interner: I) -> Option<BoundVar>
pub fn bound_var(&self, interner: I) -> Option<BoundVar>
If this is a TyKind::BoundVar(d)
, returns Some(d)
else None
.
sourcepub fn inference_var(&self, interner: I) -> Option<InferenceVar>
pub fn inference_var(&self, interner: I) -> Option<InferenceVar>
If this is a TyKind::InferenceVar(d)
, returns Some(d)
else None
.
sourcepub fn is_general_var(
&self,
interner: I,
binders: &CanonicalVarKinds<I>,
) -> bool
pub fn is_general_var( &self, interner: I, binders: &CanonicalVarKinds<I>, ) -> bool
Returns true if this is a BoundVar
or an InferenceVar
of TyVariableKind::General
.
sourcepub fn is_integer(&self, interner: I) -> bool
pub fn is_integer(&self, interner: I) -> bool
Returns true if this is an IntTy
or UintTy
.
sourcepub fn adt_id(&self, interner: I) -> Option<AdtId<I>>
pub fn adt_id(&self, interner: I) -> Option<AdtId<I>>
Returns Some(adt_id)
if this is an ADT, None
otherwise
sourcepub fn needs_shift(&self, interner: I) -> bool
pub fn needs_shift(&self, interner: I) -> bool
True if this type contains “bound” types/lifetimes, and hence needs to be shifted across binders. This is a very inefficient check, intended only for debug assertions, because I am lazy.
Trait Implementations§
source§impl<I: Interner> CastTo<GenericArg<I>> for Ty<I>
impl<I: Interner> CastTo<GenericArg<I>> for Ty<I>
source§fn cast_to(self, interner: I) -> GenericArg<I>
fn cast_to(self, interner: I) -> GenericArg<I>
T
.source§impl<I: Interner> HasInterner for Ty<I>
impl<I: Interner> HasInterner for Ty<I>
source§impl<I: Ord + Interner> Ord for Ty<I>where
I::InternedType: Ord,
impl<I: Ord + Interner> Ord for Ty<I>where
I::InternedType: Ord,
source§impl<I: PartialEq + Interner> PartialEq for Ty<I>where
I::InternedType: PartialEq,
impl<I: PartialEq + Interner> PartialEq for Ty<I>where
I::InternedType: PartialEq,
source§impl<I: PartialOrd + Interner> PartialOrd for Ty<I>where
I::InternedType: PartialOrd,
impl<I: PartialOrd + Interner> PartialOrd for Ty<I>where
I::InternedType: PartialOrd,
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl<I: Interner> TypeFoldable<I> for Ty<I>
impl<I: Interner> TypeFoldable<I> for Ty<I>
“Folding” a type invokes the try_fold_ty
method on the folder; this
usually (in turn) invokes try_super_fold_ty
to fold the individual
parts.
source§fn try_fold_with<E>(
self,
folder: &mut dyn FallibleTypeFolder<I, Error = E>,
outer_binder: DebruijnIndex,
) -> Result<Self, E>
fn try_fold_with<E>( self, folder: &mut dyn FallibleTypeFolder<I, Error = E>, outer_binder: DebruijnIndex, ) -> Result<Self, E>
folder
to self
; binders
is the
number of binders that are in scope when beginning the
folder. Typically binders
starts as 0, but is adjusted when
we encounter Binders<T>
in the IR or other similar
constructs.source§fn fold_with(
self,
folder: &mut dyn TypeFolder<I>,
outer_binder: DebruijnIndex,
) -> Self
fn fold_with( self, folder: &mut dyn TypeFolder<I>, outer_binder: DebruijnIndex, ) -> Self
try_fold_with
for use with infallible
folders. Do not override this method, to ensure coherence with
try_fold_with
.source§impl<I> TypeSuperFoldable<I> for Ty<I>where
I: Interner,
impl<I> TypeSuperFoldable<I> for Ty<I>where
I: Interner,
“Super fold” for a type invokes te more detailed callbacks on the type
source§fn try_super_fold_with<E>(
self,
folder: &mut dyn FallibleTypeFolder<I, Error = E>,
outer_binder: DebruijnIndex,
) -> Result<Ty<I>, E>
fn try_super_fold_with<E>( self, folder: &mut dyn FallibleTypeFolder<I, Error = E>, outer_binder: DebruijnIndex, ) -> Result<Ty<I>, E>
source§fn super_fold_with(
self,
folder: &mut dyn TypeFolder<I>,
outer_binder: DebruijnIndex,
) -> Self
fn super_fold_with( self, folder: &mut dyn TypeFolder<I>, outer_binder: DebruijnIndex, ) -> Self
try_super_fold_with
for use with
infallible folders. Do not override this method, to ensure coherence
with try_super_fold_with
.source§impl<I> TypeSuperVisitable<I> for Ty<I>where
I: Interner,
impl<I> TypeSuperVisitable<I> for Ty<I>where
I: Interner,
“Super visit” for a type invokes the more detailed callbacks on the type
source§fn super_visit_with<B>(
&self,
visitor: &mut dyn TypeVisitor<I, BreakTy = B>,
outer_binder: DebruijnIndex,
) -> ControlFlow<B>
fn super_visit_with<B>( &self, visitor: &mut dyn TypeVisitor<I, BreakTy = B>, outer_binder: DebruijnIndex, ) -> ControlFlow<B>
source§impl<I: Interner> TypeVisitable<I> for Ty<I>
impl<I: Interner> TypeVisitable<I> for Ty<I>
“visiting” a type invokes the visit_ty
method on the visitor; this
usually (in turn) invokes super_visit_ty
to visit the individual
parts.
source§fn visit_with<B>(
&self,
visitor: &mut dyn TypeVisitor<I, BreakTy = B>,
outer_binder: DebruijnIndex,
) -> ControlFlow<B>
fn visit_with<B>( &self, visitor: &mut dyn TypeVisitor<I, BreakTy = B>, outer_binder: DebruijnIndex, ) -> ControlFlow<B>
visitor
to self
; binders
is the
number of binders that are in scope when beginning the
visitor. Typically binders
starts as 0, but is adjusted when
we encounter Binders<T>
in the IR or other similar
constructs.impl<I: Copy + Interner> Copy for Ty<I>where
I::InternedType: Copy,
impl<I: Eq + Interner> Eq for Ty<I>where
I::InternedType: Eq,
impl<I: Interner> StructuralPartialEq for Ty<I>
Auto Trait Implementations§
impl<I> Freeze for Ty<I>
impl<I> RefUnwindSafe for Ty<I>
impl<I> Send for Ty<I>
impl<I> Sync for Ty<I>
impl<I> Unpin for Ty<I>
impl<I> UnwindSafe for Ty<I>
Blanket Implementations§
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: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T, I> CouldMatch<T> for T
impl<T, I> CouldMatch<T> for T
source§fn could_match(
&self,
interner: I,
db: &dyn UnificationDatabase<I>,
other: &T,
) -> bool
fn could_match( &self, interner: I, db: &dyn UnificationDatabase<I>, other: &T, ) -> bool
self
and other
could possibly match.source§impl<T, I> Shift<I> for Twhere
T: TypeFoldable<I>,
I: Interner,
impl<T, I> Shift<I> for Twhere
T: TypeFoldable<I>,
I: Interner,
source§fn shifted_in(self, interner: I) -> T
fn shifted_in(self, interner: I) -> T
source§fn shifted_in_from(self, interner: I, source_binder: DebruijnIndex) -> T
fn shifted_in_from(self, interner: I, source_binder: DebruijnIndex) -> T
outer_binder
so that it is
valid at the innermost binder. See DebruijnIndex::shifted_in_from
for a detailed explanation.source§fn shifted_out_to(
self,
interner: I,
target_binder: DebruijnIndex,
) -> Result<T, NoSolution>
fn shifted_out_to( self, interner: I, target_binder: DebruijnIndex, ) -> Result<T, NoSolution>
outer_binder
. See DebruijnIndex::shifted_out_to
for a detailed explanation.