Struct rustc_middle::ty::sty::GeneratorSubsts
source · [−]pub struct GeneratorSubsts<'tcx> {
pub substs: SubstsRef<'tcx>,
}
Expand description
Similar to ClosureSubsts
; see the above documentation for more.
Fields
substs: SubstsRef<'tcx>
Implementations
sourceimpl<'tcx> GeneratorSubsts<'tcx>
impl<'tcx> GeneratorSubsts<'tcx>
sourcepub fn new(
tcx: TyCtxt<'tcx>,
parts: GeneratorSubstsParts<'tcx, Ty<'tcx>>
) -> GeneratorSubsts<'tcx>
pub fn new(
tcx: TyCtxt<'tcx>,
parts: GeneratorSubstsParts<'tcx, Ty<'tcx>>
) -> GeneratorSubsts<'tcx>
Construct GeneratorSubsts
from GeneratorSubstsParts
, containing Substs
for the generator parent, alongside additional generator-specific components.
sourcefn split(self) -> GeneratorSubstsParts<'tcx, GenericArg<'tcx>>
fn split(self) -> GeneratorSubstsParts<'tcx, GenericArg<'tcx>>
Divides the generator substs into their respective components.
The ordering assumed here must match that used by GeneratorSubsts::new
above.
sourcepub fn is_valid(self) -> bool
pub fn is_valid(self) -> bool
Returns true
only if enough of the synthetic types are known to
allow using all of the methods on GeneratorSubsts
without panicking.
Used primarily by ty::print::pretty
to be able to handle generator
types that haven’t had their synthetic types substituted in.
sourcepub fn parent_substs(self) -> &'tcx [GenericArg<'tcx>]
pub fn parent_substs(self) -> &'tcx [GenericArg<'tcx>]
Returns the substitutions of the generator’s parent.
sourcepub fn witness(self) -> Ty<'tcx>
pub fn witness(self) -> Ty<'tcx>
This describes the types that can be contained in a generator. It will be a type variable initially and unified in the last stages of typeck of a body. It contains a tuple of all the types that could end up on a generator frame. The state transformation MIR pass may only produce layouts which mention types in this tuple. Upvars are not counted here.
sourcepub fn upvar_tys(self) -> impl Iterator<Item = Ty<'tcx>> + 'tcx
pub fn upvar_tys(self) -> impl Iterator<Item = Ty<'tcx>> + 'tcx
Returns an iterator over the list of types of captured paths by the generator. In case there was a type error in figuring out the types of the captured path, an empty iterator is returned.
sourcepub fn tupled_upvars_ty(self) -> Ty<'tcx>
pub fn tupled_upvars_ty(self) -> Ty<'tcx>
Returns the tuple type representing the upvars for this generator.
sourcepub fn resume_ty(self) -> Ty<'tcx>
pub fn resume_ty(self) -> Ty<'tcx>
Returns the type representing the resume type of the generator.
sourcepub fn yield_ty(self) -> Ty<'tcx>
pub fn yield_ty(self) -> Ty<'tcx>
Returns the type representing the yield type of the generator.
sourcepub fn return_ty(self) -> Ty<'tcx>
pub fn return_ty(self) -> Ty<'tcx>
Returns the type representing the return type of the generator.
sourcepub fn poly_sig(self) -> PolyGenSig<'tcx>
pub fn poly_sig(self) -> PolyGenSig<'tcx>
Returns the “generator signature”, which consists of its yield and return types.
N.B., some bits of the code prefers to see this wrapped in a binder, but it never contains bound regions. Probably this function should be removed.
sourceimpl<'tcx> GeneratorSubsts<'tcx>
impl<'tcx> GeneratorSubsts<'tcx>
const UNRESUMED_NAME: &'static str = "Unresumed"
const RETURNED_NAME: &'static str = "Returned"
const POISONED_NAME: &'static str = "Panicked"
sourcepub fn variant_range(&self, def_id: DefId, tcx: TyCtxt<'tcx>) -> Range<VariantIdx>
pub fn variant_range(&self, def_id: DefId, tcx: TyCtxt<'tcx>) -> Range<VariantIdx>
The valid variant indices of this generator.
sourcepub fn discriminant_for_variant(
&self,
def_id: DefId,
tcx: TyCtxt<'tcx>,
variant_index: VariantIdx
) -> Discr<'tcx>
pub fn discriminant_for_variant(
&self,
def_id: DefId,
tcx: TyCtxt<'tcx>,
variant_index: VariantIdx
) -> Discr<'tcx>
The discriminant for the given variant. Panics if the variant_index
is
out of range.
sourcepub fn discriminants(
self,
def_id: DefId,
tcx: TyCtxt<'tcx>
) -> impl Iterator<Item = (VariantIdx, Discr<'tcx>)> + Captures<'tcx>
pub fn discriminants(
self,
def_id: DefId,
tcx: TyCtxt<'tcx>
) -> impl Iterator<Item = (VariantIdx, Discr<'tcx>)> + Captures<'tcx>
The set of all discriminants for the generator, enumerated with their variant indices.
sourcepub fn variant_name(v: VariantIdx) -> Cow<'static, str>
pub fn variant_name(v: VariantIdx) -> Cow<'static, str>
Calls f
with a reference to the name of the enumerator for the given
variant v
.
sourcepub fn discr_ty(&self, tcx: TyCtxt<'tcx>) -> Ty<'tcx>
pub fn discr_ty(&self, tcx: TyCtxt<'tcx>) -> Ty<'tcx>
The type of the state discriminant used in the generator type.
sourcepub fn state_tys(
self,
def_id: DefId,
tcx: TyCtxt<'tcx>
) -> impl Iterator<Item = impl Iterator<Item = Ty<'tcx>> + Captures<'tcx>>
pub fn state_tys(
self,
def_id: DefId,
tcx: TyCtxt<'tcx>
) -> impl Iterator<Item = impl Iterator<Item = Ty<'tcx>> + Captures<'tcx>>
This returns the types of the MIR locals which had to be stored across suspension points. It is calculated in rustc_mir_transform::generator::StateTransform. All the types here must be in the tuple in GeneratorInterior.
The locals are grouped by their variant number. Note that some locals may be repeated in multiple variants.
sourcepub fn prefix_tys(self) -> impl Iterator<Item = Ty<'tcx>>
pub fn prefix_tys(self) -> impl Iterator<Item = Ty<'tcx>>
This is the types of the fields of a generator which are not stored in a variant.
Trait Implementations
sourceimpl<'tcx> Clone for GeneratorSubsts<'tcx>
impl<'tcx> Clone for GeneratorSubsts<'tcx>
sourcefn clone(&self) -> GeneratorSubsts<'tcx>
fn clone(&self) -> GeneratorSubsts<'tcx>
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresourceimpl<'tcx> Debug for GeneratorSubsts<'tcx>
impl<'tcx> Debug for GeneratorSubsts<'tcx>
sourceimpl<'tcx, '__lifted> Lift<'__lifted> for GeneratorSubsts<'tcx>
impl<'tcx, '__lifted> Lift<'__lifted> for GeneratorSubsts<'tcx>
type Lifted = GeneratorSubsts<'__lifted>
fn lift_to_tcx(
self,
__tcx: TyCtxt<'__lifted>
) -> Option<GeneratorSubsts<'__lifted>>
sourceimpl<'tcx> Relate<'tcx> for GeneratorSubsts<'tcx>
impl<'tcx> Relate<'tcx> for GeneratorSubsts<'tcx>
fn relate<R: TypeRelation<'tcx>>(
relation: &mut R,
a: GeneratorSubsts<'tcx>,
b: GeneratorSubsts<'tcx>
) -> RelateResult<'tcx, GeneratorSubsts<'tcx>>
sourceimpl<'tcx> TypeFoldable<'tcx> for GeneratorSubsts<'tcx>
impl<'tcx> TypeFoldable<'tcx> for GeneratorSubsts<'tcx>
sourcefn try_fold_with<__F: FallibleTypeFolder<'tcx>>(
self,
__folder: &mut __F
) -> Result<Self, __F::Error>
fn try_fold_with<__F: FallibleTypeFolder<'tcx>>(
self,
__folder: &mut __F
) -> Result<Self, __F::Error>
sourcefn fold_with<F: TypeFolder<'tcx>>(self, folder: &mut F) -> Self
fn fold_with<F: TypeFolder<'tcx>>(self, folder: &mut F) -> Self
try_fold_with
for use with infallible
folders. Do not override this method, to ensure coherence with
try_fold_with
. Read moresourceimpl<'tcx> TypeVisitable<'tcx> for GeneratorSubsts<'tcx>
impl<'tcx> TypeVisitable<'tcx> for GeneratorSubsts<'tcx>
sourcefn visit_with<__V: TypeVisitor<'tcx>>(
&self,
__visitor: &mut __V
) -> ControlFlow<__V::BreakTy>
fn visit_with<__V: TypeVisitor<'tcx>>(
&self,
__visitor: &mut __V
) -> ControlFlow<__V::BreakTy>
sourcefn has_vars_bound_at_or_above(&self, binder: DebruijnIndex) -> bool
fn has_vars_bound_at_or_above(&self, binder: DebruijnIndex) -> bool
true
if self
has any late-bound regions that are either
bound by binder
or bound by some binder outside of binder
.
If binder
is ty::INNERMOST
, this indicates whether
there are any late-bound regions that appear free. Read moresourcefn has_vars_bound_above(&self, binder: DebruijnIndex) -> bool
fn has_vars_bound_above(&self, binder: DebruijnIndex) -> bool
true
if this self
has any regions that escape binder
(and
hence are not bound by it). Read morefn has_escaping_bound_vars(&self) -> bool
fn has_type_flags(&self, flags: TypeFlags) -> bool
fn has_projections(&self) -> bool
fn has_opaque_types(&self) -> bool
fn references_error(&self) -> bool
fn error_reported(&self) -> Option<ErrorGuaranteed>
fn has_param_types_or_consts(&self) -> bool
fn has_infer_regions(&self) -> bool
fn has_infer_types(&self) -> bool
fn has_infer_types_or_consts(&self) -> bool
fn needs_infer(&self) -> bool
fn has_placeholders(&self) -> bool
fn needs_subst(&self) -> bool
sourcefn has_free_regions(&self) -> bool
fn has_free_regions(&self) -> bool
fn has_erased_regions(&self) -> bool
sourcefn has_erasable_regions(&self) -> bool
fn has_erasable_regions(&self) -> bool
sourcefn is_global(&self) -> bool
fn is_global(&self) -> bool
sourcefn has_late_bound_regions(&self) -> bool
fn has_late_bound_regions(&self) -> bool
sourcefn still_further_specializable(&self) -> bool
fn still_further_specializable(&self) -> bool
impl
specialization. Read moreimpl<'tcx> Copy for GeneratorSubsts<'tcx>
Auto Trait Implementations
impl<'tcx> !RefUnwindSafe for GeneratorSubsts<'tcx>
impl<'tcx> Send for GeneratorSubsts<'tcx>
impl<'tcx> Sync for GeneratorSubsts<'tcx>
impl<'tcx> Unpin for GeneratorSubsts<'tcx>
impl<'tcx> !UnwindSafe for GeneratorSubsts<'tcx>
Blanket Implementations
sourceimpl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
fn allocate_on(self, arena: &'a Arena<'tcx>) -> &'a mut T
fn allocate_from_iter(
arena: &'a Arena<'tcx>,
iter: impl IntoIterator<Item = T>
) -> &'a mut [T]ⓘNotable traits for &[u8]impl Read for &[u8]impl Write for &mut [u8]
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
sourceimpl<T, R> InternIteratorElement<T, R> for T
impl<T, R> InternIteratorElement<T, R> for T
type Output = R
fn intern_with<I, F>(iter: I, f: F) -> <T as InternIteratorElement<T, R>>::Outputwhere
I: Iterator<Item = T>,
F: FnOnce(&[T]) -> R,
sourceimpl<T> MaybeResult<T> for T
impl<T> MaybeResult<T> for T
sourceimpl<CTX, T> Value<CTX> for Twhere
CTX: DepContext,
impl<CTX, T> Value<CTX> for Twhere
CTX: DepContext,
default fn from_cycle_error(tcx: CTX) -> T
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 8 bytes