pub enum GeneratorData<'tcx, 'a> {
Local(&'a TypeckResults<'tcx>),
Foreign(&'tcx GeneratorDiagnosticData<'tcx>),
}
Variants§
Local(&'a TypeckResults<'tcx>)
Foreign(&'tcx GeneratorDiagnosticData<'tcx>)
Implementations§
source§impl<'tcx, 'a> GeneratorData<'tcx, 'a>
impl<'tcx, 'a> GeneratorData<'tcx, 'a>
fn try_get_upvar_span<F>(
&self,
infer_context: &InferCtxt<'tcx>,
generator_did: DefId,
ty_matches: F
) -> Option<GeneratorInteriorOrUpvar>where
F: Fn(Binder<'tcx, Ty<'tcx>>) -> bool,
fn get_from_await_ty<F>(
&self,
visitor: AwaitsVisitor,
hir: Map<'tcx>,
ty_matches: F
) -> Option<Span>where
F: Fn(Binder<'tcx, Ty<'tcx>>) -> bool,
sourcefn get_generator_interior_types(
&self
) -> Binder<'tcx, &[GeneratorInteriorTypeCause<'tcx>]>
fn get_generator_interior_types(
&self
) -> Binder<'tcx, &[GeneratorInteriorTypeCause<'tcx>]>
Get the type, expression, span and optional scope span of all types that are live across the yield of this generator
fn is_foreign(&self) -> bool
Trait Implementations§
Auto Trait Implementations§
impl<'tcx, 'a> !RefUnwindSafe for GeneratorData<'tcx, 'a>
impl<'tcx, 'a> !Send for GeneratorData<'tcx, 'a>
impl<'tcx, 'a> !Sync for GeneratorData<'tcx, 'a>
impl<'tcx, 'a> Unpin for GeneratorData<'tcx, 'a>where
'tcx: 'a,
impl<'tcx, 'a> !UnwindSafe for GeneratorData<'tcx, 'a>
Blanket Implementations§
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: 16 bytes
Size for each variant:
Local
: 8 bytesForeign
: 8 bytes