Enum rustc_infer::infer::RegionVariableOrigin
source · pub enum RegionVariableOrigin {
MiscVariable(Span),
PatternRegion(Span),
AddrOfRegion(Span),
Autoref(Span),
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
PatternRegion(Span)
Regions created by a &P
or [...]
pattern
AddrOfRegion(Span)
Regions created by &
operator
Autoref(Span)
Regions created as part of an autoref of a method receiver
Coercion(Span)
Regions created as part of an automatic coercion
EarlyBoundRegion(Span, Symbol)
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
UpvarRegion(UpvarId, Span)
Nll(NllRegionVariableOrigin)
This origin is used for the inference variables that we create during NLL region processing.
Implementations§
Trait Implementations§
source§impl Clone for RegionVariableOrigin
impl Clone for RegionVariableOrigin
source§fn clone(&self) -> RegionVariableOrigin
fn clone(&self) -> RegionVariableOrigin
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RegionVariableOrigin
impl Debug for RegionVariableOrigin
impl Copy for RegionVariableOrigin
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§
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: 40 bytes
Size for each variant:
MiscVariable
: 8 bytesPatternRegion
: 8 bytesAddrOfRegion
: 8 bytesAutoref
: 8 bytesCoercion
: 8 bytesEarlyBoundRegion
: 12 bytesLateBoundRegion
: 36 bytesUpvarRegion
: 20 bytesNll
: 24 bytes