Struct tvix_eval::compiler::scope::Local

source ·
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§

source§

impl Local

source

pub fn name(&self) -> Option<SmolStr>

Retrieve the name of the given local (if available).

source

pub fn is_ignored(&self) -> bool

Is this local intentionally ignored? (i.e. name starts with _)

source

pub fn is_used(&self) -> bool

Trait Implementations§

source§

impl Debug for Local

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

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> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V