pub enum VariableLocation<R: Reader<Offset = usize>> {
Expression(Expression<R>),
LocationListEntry(LocationListEntry<R>),
LocationOutOfRange,
NoLocation,
}
Expand description
Holds the location of a variable.
Variants§
Expression(Expression<R>)
The gimli-rs expression that describes the location of the variable.
LocationListEntry(LocationListEntry<R>)
The gimli-rs location list entry that describes the location of the Variable.
LocationOutOfRange
The variable has no location currently but had or will have one. Note that the location can be a constant stored in the DWARF stack.
NoLocation
The variable has no location.
Auto Trait Implementations§
impl<R> Freeze for VariableLocation<R>where
R: Freeze,
impl<R> RefUnwindSafe for VariableLocation<R>where
R: RefUnwindSafe,
impl<R> Send for VariableLocation<R>where
R: Send,
impl<R> Sync for VariableLocation<R>where
R: Sync,
impl<R> Unpin for VariableLocation<R>where
R: Unpin,
impl<R> UnwindSafe for VariableLocation<R>where
R: UnwindSafe,
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