pub struct LocalVar {
pub name: String,
pub start_pc: Int,
pub end_pc: Int,
}Expand description
An entry in the local variable debug table.
Fields§
§name: StringThe local variable’s name.
start_pc: IntThe instruction at which the local variable is introduced.
end_pc: IntThe instruction at which the local variable goes out of scope.
Trait Implementations§
impl StructuralPartialEq for LocalVar
Auto Trait Implementations§
impl Freeze for LocalVar
impl RefUnwindSafe for LocalVar
impl Send for LocalVar
impl Sync for LocalVar
impl Unpin for LocalVar
impl UnwindSafe for LocalVar
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