pub struct LocalVariableInfo {
pub start: LabelNode,
pub length: u16,
pub name: StrRef,
pub desc: DescriptorRef,
pub index: u16,
}Fields§
§start: LabelNode§length: u16§name: StrRef§desc: DescriptorRef§index: u16The value of the index item must be a valid index into the local variable array of the current frame. The given local variable is at index in the local variable array of the current frame. If the given local variable is of type double or long, it occupies both index and index + 1.
Trait Implementations§
Source§impl Clone for LocalVariableInfo
impl Clone for LocalVariableInfo
Source§fn clone(&self) -> LocalVariableInfo
fn clone(&self) -> LocalVariableInfo
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for LocalVariableInfo
impl RefUnwindSafe for LocalVariableInfo
impl Send for LocalVariableInfo
impl Sync for LocalVariableInfo
impl Unpin for LocalVariableInfo
impl UnwindSafe for LocalVariableInfo
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