pub struct CoroutineClosureArgsParts<I: Interner> {
pub parent_args: I::GenericArgsSlice,
pub closure_kind_ty: I::Ty,
pub signature_parts_ty: I::Ty,
pub tupled_upvars_ty: I::Ty,
pub coroutine_captures_by_ref_ty: I::Ty,
pub coroutine_witness_ty: I::Ty,
}
Expand description
See docs for explanation of how each argument is used.
See CoroutineClosureSignature
for how these arguments are put together
to make a callable ty::FnSig
suitable for typeck and borrowck.
Fields§
§parent_args: I::GenericArgsSlice
This is the args of the typeck root.
closure_kind_ty: I::Ty
Represents the maximum calling capability of the closure.
signature_parts_ty: I::Ty
Represents all of the relevant parts of the coroutine returned by this
coroutine-closure. This signature parts type will have the general
shape of fn(tupled_inputs, resume_ty) -> (return_ty, yield_ty)
, where
resume_ty
, return_ty
, and yield_ty
are the respective types for the
coroutine returned by the coroutine-closure.
Use coroutine_closure_sig
to break up this type rather than using it
yourself.
tupled_upvars_ty: I::Ty
The upvars captured by the closure. Remains an inference variable until the upvar analysis, which happens late in HIR typeck.
coroutine_captures_by_ref_ty: I::Ty
a function pointer that has the shape for<'env> fn() -> (&'env T, ...)
.
This allows us to represent the binder of the self-captures of the closure.
For example, if the coroutine returned by the closure borrows String
from the closure’s upvars, this will be for<'env> fn() -> (&'env String,)
,
while the tupled_upvars_ty
, representing the by-move version of the same
captures, will be (String,)
.
coroutine_witness_ty: I::Ty
Witness type returned by the generator produced by this coroutine-closure.
Auto Trait Implementations§
impl<I> Freeze for CoroutineClosureArgsParts<I>
impl<I> RefUnwindSafe for CoroutineClosureArgsParts<I>
impl<I> Send for CoroutineClosureArgsParts<I>
impl<I> Sync for CoroutineClosureArgsParts<I>
impl<I> Unpin for CoroutineClosureArgsParts<I>
impl<I> UnwindSafe for CoroutineClosureArgsParts<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, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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>
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>
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 moresource§impl<I, T, U> Upcast<I, U> for Twhere
U: UpcastFrom<I, T>,
impl<I, T, U> Upcast<I, U> for Twhere
U: UpcastFrom<I, T>,
source§impl<I, T> UpcastFrom<I, T> for T
impl<I, T> UpcastFrom<I, T> for T
fn upcast_from(from: T, _tcx: I) -> T
source§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.