Enum rustc_infer::infer::RegionVariableOrigin [−][src]
pub enum RegionVariableOrigin {
MiscVariable(Span),
PatternRegion(Span),
AddrOfRegion(Span),
Autoref(Span, AssocItem),
Coercion(Span),
EarlyBoundRegion(Span, Symbol),
LateBoundRegion(Span, BoundRegionKind, LateBoundRegionConversionTime),
UpvarRegion(UpvarId, Span),
Nll(NllRegionVariableOrigin),
}
Expand description
Reasons to create a region inference variable
See error_reporting
module for more details
Variants
MiscVariable(Span)
Region variables created for ill-categorized reasons, mostly indicates places in need of refactoring
Tuple Fields of MiscVariable
0: Span
PatternRegion(Span)
Regions created by a &P
or [...]
pattern
Tuple Fields of PatternRegion
0: Span
AddrOfRegion(Span)
Regions created by &
operator
Tuple Fields of AddrOfRegion
0: Span
Regions created as part of an autoref of a method receiver
Coercion(Span)
Regions created as part of an automatic coercion
Tuple Fields of Coercion
0: Span
Region variables created as the values for early-bound regions
LateBoundRegion(Span, BoundRegionKind, LateBoundRegionConversionTime)
Region variables created for bound regions in a function or method that is called
Tuple Fields of LateBoundRegion
This origin is used for the inference variables that we create during NLL region processing.
Tuple Fields of Nll
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for RegionVariableOrigin
impl !Send for RegionVariableOrigin
impl !Sync for RegionVariableOrigin
impl Unpin for RegionVariableOrigin
impl UnwindSafe for RegionVariableOrigin
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: 56 bytes
Size for each variant:
MiscVariable
: 8 bytesPatternRegion
: 8 bytesAddrOfRegion
: 8 bytesAutoref
: 52 bytesCoercion
: 8 bytesEarlyBoundRegion
: 12 bytesLateBoundRegion
: 32 bytesUpvarRegion
: 20 bytesNll
: 24 bytes