pub struct LocalVariable {
pub start: u16,
pub length: u16,
pub name: u16,
pub descriptor: u16,
pub index: u16,
}
Expand description
An entry of the LocalVariableTable
Fields§
§start: u16
Start of the Code.
length: u16
Length of the Code.
name: u16
The index to an Item::UTF8(_)
representing a valid unqalified name.
descriptor: u16
The index to an Item::UTF8(_)
representing a field/type descriptor.
index: u16
The index in the local variable array of the current frame. double and long do occupy two spaces.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LocalVariable
impl RefUnwindSafe for LocalVariable
impl Send for LocalVariable
impl Sync for LocalVariable
impl Unpin for LocalVariable
impl UnwindSafe for LocalVariable
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