pub struct Local {
name: LocalName,
pub span: Option<Span>,
pub depth: usize,
pub initialised: bool,
pub used: bool,
pub needs_finaliser: bool,
pub must_thunk: bool,
}
Expand description
Represents a single local already known to the compiler.
Fields§
§name: LocalName
Identifier of this local. This is always a statically known value (Nix does not allow dynamic identifier names in locals), or a “phantom” value not accessible by users.
span: Option<Span>
Source span at which this local was declared.
depth: usize
Scope depth of this local.
initialised: bool
Is this local initialised?
used: bool
Is this local known to have been used at all?
needs_finaliser: bool
Does this local need to be finalised after the enclosing scope is completely constructed?
must_thunk: bool
Does this local’s upvalues contain a reference to itself?
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Local
impl RefUnwindSafe for Local
impl Send for Local
impl Sync for Local
impl Unpin for Local
impl UnwindSafe for Local
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
Mutably borrows from an owned value. Read more
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more