pub struct LocalVariableType {
pub start: u16,
pub length: u16,
pub name: u16,
pub signature: u16,
pub index: u16,
}
Expand description
An entry of the LocalVariableTypeTable
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.
signature: u16
The index to an Item::UTF8(_)
representing a field signature.
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 LocalVariableType
impl RefUnwindSafe for LocalVariableType
impl Send for LocalVariableType
impl Sync for LocalVariableType
impl Unpin for LocalVariableType
impl UnwindSafe for LocalVariableType
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