pub type PlaceholderIndex = PlaceholderIndex;
Aliased Type§
struct PlaceholderIndex {
pub ui: UniverseIndex,
pub idx: usize,
}
Fields§
§ui: UniverseIndex
Index of the universe.
idx: usize
Index in the universe.
Implementations
§impl PlaceholderIndex
impl PlaceholderIndex
pub fn to_lifetime<I>(self, interner: I) -> Lifetime<I>where
I: Interner,
pub fn to_lifetime<I>(self, interner: I) -> Lifetime<I>where
I: Interner,
Wrap the placeholder instance in a lifetime.
pub fn to_ty<I>(self, interner: I) -> Ty<I>where
I: Interner,
pub fn to_ty<I>(self, interner: I) -> Ty<I>where
I: Interner,
Create an interned type.
pub fn to_const<I>(self, interner: I, ty: Ty<I>) -> Const<I>where
I: Interner,
pub fn to_const<I>(self, interner: I, ty: Ty<I>) -> Const<I>where
I: Interner,
Wrap the placeholder index in a constant.
Trait Implementations
§impl Ord for PlaceholderIndex
impl Ord for PlaceholderIndex
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
§impl PartialOrd for PlaceholderIndex
impl PartialOrd for PlaceholderIndex
§impl<I> TypeFoldable<I> for PlaceholderIndexwhere
I: Interner,
impl<I> TypeFoldable<I> for PlaceholderIndexwhere
I: Interner,
§fn try_fold_with<E>(
self,
_folder: &mut dyn FallibleTypeFolder<I, Error = E>,
_outer_binder: DebruijnIndex,
) -> Result<PlaceholderIndex, E>
fn try_fold_with<E>( self, _folder: &mut dyn FallibleTypeFolder<I, Error = E>, _outer_binder: DebruijnIndex, ) -> Result<PlaceholderIndex, E>
Apply the given folder
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.§fn fold_with(
self,
folder: &mut dyn TypeFolder<I, Error = Infallible>,
outer_binder: DebruijnIndex,
) -> Self
fn fold_with( self, folder: &mut dyn TypeFolder<I, Error = Infallible>, outer_binder: DebruijnIndex, ) -> Self
A convenient alternative to
try_fold_with
for use with infallible
folders. Do not override this method, to ensure coherence with
try_fold_with
.§impl<I> TypeVisitable<I> for PlaceholderIndexwhere
I: Interner,
impl<I> TypeVisitable<I> for PlaceholderIndexwhere
I: Interner,
§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>
Apply the given visitor
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.