pub struct LocalVariableTypeInfo {
pub start: LabelNode,
pub length: u16,
pub name: StrRef,
pub signature: StrRef,
pub index: u16,
}Fields§
§start: LabelNode§length: u16§name: StrRef§signature: StrRef§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 LocalVariableTypeInfo
impl Clone for LocalVariableTypeInfo
Source§fn clone(&self) -> LocalVariableTypeInfo
fn clone(&self) -> LocalVariableTypeInfo
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 LocalVariableTypeInfo
impl RefUnwindSafe for LocalVariableTypeInfo
impl Send for LocalVariableTypeInfo
impl Sync for LocalVariableTypeInfo
impl Unpin for LocalVariableTypeInfo
impl UnwindSafe for LocalVariableTypeInfo
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