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.
They mostly indicate 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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
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: 28 bytes
Size for each variant:
MiscVariable
: 12 bytesPatternRegion
: 12 bytesAddrOfRegion
: 12 bytesAutoref
: 12 bytesCoercion
: 12 bytesEarlyBoundRegion
: 16 bytesLateBoundRegion
: 28 bytesUpvarRegion
: 24 bytesNll
: 24 bytes