Struct rustc_infer::infer::opaque_types::OpaqueTypeDecl [−][src]
pub struct OpaqueTypeDecl<'tcx> {
pub opaque_type: Ty<'tcx>,
pub definition_span: Span,
pub concrete_ty: Ty<'tcx>,
pub origin: OpaqueTyOrigin,
}
Expand description
Information about the opaque types whose values we
are inferring in this function (these are the impl Trait
that
appear in the return type).
Fields
opaque_type: Ty<'tcx>
The opaque type (ty::Opaque
) for this declaration.
definition_span: Span
The span of this particular definition of the opaque type. So for example:
type Foo = impl Baz;
fn bar() -> Foo {
// ^^^ This is the span we are looking for!
}
In cases where the fn returns (impl Trait, impl Trait)
or
other such combinations, the result is currently
over-approximated, but better than nothing.
concrete_ty: Ty<'tcx>
The type variable that represents the value of the opaque type that we require. In other words, after we compile this function, we will be created a constraint like:
Foo<'a, T> = ?C
where ?C
is the value of this type variable. =) It may
naturally refer to the type and lifetime parameters in scope
in this function, though ultimately it should only reference
those that are arguments to Foo
in the constraint above. (In
other words, ?C
should not include 'b
, even though it’s a
lifetime parameter on foo
.)
origin: OpaqueTyOrigin
The origin of the opaque type.
Trait Implementations
Auto Trait Implementations
impl<'tcx> !RefUnwindSafe for OpaqueTypeDecl<'tcx>
impl<'tcx> !Send for OpaqueTypeDecl<'tcx>
impl<'tcx> !Sync for OpaqueTypeDecl<'tcx>
impl<'tcx> Unpin for OpaqueTypeDecl<'tcx>
impl<'tcx> !UnwindSafe for OpaqueTypeDecl<'tcx>
Blanket Implementations
pub fn allocate_from_iter(
arena: &'a Arena<'tcx>,
iter: impl IntoIterator<Item = T>
) -> &'a mut [T]
Mutably borrows from an owned value. Read more
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: 32 bytes