pub(crate) enum CallHandling<'tcx, 'a, K> {
ApproxAsyncFn,
Ready {
calling_convention: CallingConvention<'tcx>,
descriptor: (Instance<'tcx>, K),
precise: bool,
},
ApproxAsyncSM(fn(_: &LocalAnalysis<'tcx, 'a, K>, _: &mut dyn Visitor<'tcx>, _: ArgSlice<'a, 'tcx>, _: Place<'tcx>, _: Location)),
}
Variants§
ApproxAsyncFn
Ready
ApproxAsyncSM(fn(_: &LocalAnalysis<'tcx, 'a, K>, _: &mut dyn Visitor<'tcx>, _: ArgSlice<'a, 'tcx>, _: Place<'tcx>, _: Location))
Trait Implementations§
Auto Trait Implementations§
impl<'tcx, 'a, K> Freeze for CallHandling<'tcx, 'a, K>where
K: Freeze,
impl<'tcx, 'a, K> !RefUnwindSafe for CallHandling<'tcx, 'a, K>
impl<'tcx, 'a, K> Send for CallHandling<'tcx, 'a, K>where
K: Send,
impl<'tcx, 'a, K> Sync for CallHandling<'tcx, 'a, K>where
K: Sync,
impl<'tcx, 'a, K> Unpin for CallHandling<'tcx, 'a, K>where
K: Unpin,
impl<'tcx, 'a, K> !UnwindSafe for CallHandling<'tcx, 'a, K>
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