pub struct JvmLocalVariableEntry {
pub start_pc: u16,
pub length: u16,
pub name: String,
pub descriptor: String,
pub index: u16,
}Expand description
JVM local variable table entry
Fields§
§start_pc: u16Starting PC
length: u16Length of the range
name: StringVariable name
descriptor: StringVariable descriptor
index: u16Local variable index
Trait Implementations§
Source§impl Clone for JvmLocalVariableEntry
impl Clone for JvmLocalVariableEntry
Source§fn clone(&self) -> JvmLocalVariableEntry
fn clone(&self) -> JvmLocalVariableEntry
Returns a duplicate 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 JvmLocalVariableEntry
impl RefUnwindSafe for JvmLocalVariableEntry
impl Send for JvmLocalVariableEntry
impl Sync for JvmLocalVariableEntry
impl Unpin for JvmLocalVariableEntry
impl UnsafeUnpin for JvmLocalVariableEntry
impl UnwindSafe for JvmLocalVariableEntry
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