Enum rustc_hir::LifetimeName
source · pub enum LifetimeName {
Param(LocalDefId),
ImplicitObjectLifetimeDefault,
Error,
Infer,
Static,
}
Variants§
Param(LocalDefId)
User-given names or fresh (synthetic) names.
ImplicitObjectLifetimeDefault
Implicit lifetime in a context like dyn Foo
. This is
distinguished from implicit lifetimes elsewhere because the
lifetime that they default to must appear elsewhere within the
enclosing type. This means that, in an impl Trait
context, we
don’t have to create a parameter for them. That is, impl Trait<Item = &u32>
expands to an opaque type like type Foo<'a> = impl Trait<Item = &'a u32>
, but impl Trait<item = dyn Bar>
expands to type Foo = impl Trait<Item = dyn Bar + 'static>
. The latter uses ImplicitObjectLifetimeDefault
so
that surrounding code knows not to create a lifetime
parameter.
Error
Indicates an error during lowering (usually '_
in wrong place)
that was already reported.
Infer
User wrote an anonymous lifetime, either '_
or nothing.
The semantics of this lifetime should be inferred by typechecking code.
Static
User wrote 'static
.
Implementations§
Trait Implementations§
source§impl Clone for LifetimeName
impl Clone for LifetimeName
source§fn clone(&self) -> LifetimeName
fn clone(&self) -> LifetimeName
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for LifetimeName
impl Debug for LifetimeName
source§impl<__CTX> HashStable<__CTX> for LifetimeNamewhere
__CTX: HashStableContext,
impl<__CTX> HashStable<__CTX> for LifetimeNamewhere __CTX: HashStableContext,
fn hash_stable(&self, __hcx: &mut __CTX, __hasher: &mut StableHasher)
source§impl PartialEq<LifetimeName> for LifetimeName
impl PartialEq<LifetimeName> for LifetimeName
source§fn eq(&self, other: &LifetimeName) -> bool
fn eq(&self, other: &LifetimeName) -> bool
self
and other
values to be equal, and is used
by ==
.impl Copy for LifetimeName
impl Eq for LifetimeName
impl StructuralEq for LifetimeName
impl StructuralPartialEq for LifetimeName
Auto Trait Implementations§
impl RefUnwindSafe for LifetimeName
impl Send for LifetimeName
impl Sync for LifetimeName
impl Unpin for LifetimeName
impl UnwindSafe for LifetimeName
Blanket Implementations§
source§impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere T: Copy,
fn allocate_on<'a>(self, arena: &'a Arena<'tcx>) -> &'a mut T
fn allocate_from_iter<'a>( arena: &'a Arena<'tcx>, iter: impl IntoIterator<Item = T> ) -> &'a mut [T]
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: 4 bytes
Size for each variant:
Param
: 4 bytesImplicitObjectLifetimeDefault
: 0 bytesError
: 0 bytesInfer
: 0 bytesStatic
: 0 bytes