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.
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
sourceimpl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
fn allocate_on(self, arena: &'a Arena<'tcx>) -> &'a mut T
fn allocate_from_iter(
arena: &'a Arena<'tcx>,
iter: impl IntoIterator<Item = T>
) -> &'a mut [T]ⓘNotable traits for &[u8]impl Read for &[u8]impl Write for &mut [u8]
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn 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
: 8 bytesPatternRegion
: 8 bytesAddrOfRegion
: 8 bytesAutoref
: 8 bytesCoercion
: 8 bytesEarlyBoundRegion
: 12 bytesLateBoundRegion
: 28 bytesUpvarRegion
: 20 bytesNll
: 16 bytes