pub type ClosureId = ClosureId<Interner>;
Aliased Type§
struct ClosureId(pub Id);
Fields§
§0: Id
Trait Implementations
Source§impl From<InternedClosureId> for ClosureId<Interner>
impl From<InternedClosureId> for ClosureId<Interner>
Source§fn from(id: InternedClosureId) -> Self
fn from(id: InternedClosureId) -> Self
Converts to this type from the input type.
§impl<I> Ord for ClosureId<I>
impl<I> Ord for ClosureId<I>
§impl<I> PartialOrd for ClosureId<I>where
I: PartialOrd + Interner,
<I as Interner>::DefId: PartialOrd,
impl<I> PartialOrd for ClosureId<I>where
I: PartialOrd + Interner,
<I as Interner>::DefId: PartialOrd,
§impl<I> TypeFoldable<I> for ClosureId<I>where
I: Interner,
impl<I> TypeFoldable<I> for ClosureId<I>where
I: Interner,
§fn try_fold_with<E>(
self,
_folder: &mut dyn FallibleTypeFolder<I, Error = E>,
_outer_binder: DebruijnIndex,
) -> Result<ClosureId<I>, E>
fn try_fold_with<E>( self, _folder: &mut dyn FallibleTypeFolder<I, Error = E>, _outer_binder: DebruijnIndex, ) -> Result<ClosureId<I>, 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 ClosureId<I>where
I: Interner,
impl<I> TypeVisitable<I> for ClosureId<I>where
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.