pub(crate) struct DesugarCtxt<'genv, 'tcx> {
pub(crate) genv: GlobalEnv<'genv, 'tcx>,
pub(crate) resolver_output: &'genv ResolverOutput,
}
Fields§
§genv: GlobalEnv<'genv, 'tcx>
§resolver_output: &'genv ResolverOutput
Implementations§
Source§impl<'genv, 'tcx> DesugarCtxt<'genv, 'tcx>
impl<'genv, 'tcx> DesugarCtxt<'genv, 'tcx>
pub(crate) fn with_rust_item_ctxt<'a, T>( &'a self, owner_id: OwnerId, opaque_tys: Option<&'a mut Vec<&'genv OpaqueTy<'genv>>>, f: impl FnOnce(&mut RustItemCtxt<'a, 'genv, 'tcx>) -> Result<T, ErrorGuaranteed>, ) -> Result<T, ErrorGuaranteed>
Auto Trait Implementations§
impl<'genv, 'tcx> Freeze for DesugarCtxt<'genv, 'tcx>
impl<'genv, 'tcx> !RefUnwindSafe for DesugarCtxt<'genv, 'tcx>
impl<'genv, 'tcx> !Send for DesugarCtxt<'genv, 'tcx>
impl<'genv, 'tcx> !Sync for DesugarCtxt<'genv, 'tcx>
impl<'genv, 'tcx> Unpin for DesugarCtxt<'genv, 'tcx>
impl<'genv, 'tcx> !UnwindSafe for DesugarCtxt<'genv, 'tcx>
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
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more