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