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: u16Start of the Code.
length: u16Length of the Code.
name: u16The index to an Item::UTF8(_) representing a valid unqalified name.
descriptor: u16The index to an Item::UTF8(_) representing a field/type descriptor.
index: u16The 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