pub struct JvmLocalVariable {
pub start_pc: u16,
pub length: u16,
pub name: String,
pub descriptor: String,
pub index: u16,
}Expand description
JVM 局部变量信息
Fields§
§start_pc: u16起始 PC
length: u16长度
name: String变量名
descriptor: String描述符
index: u16索引
Trait Implementations§
Source§impl Clone for JvmLocalVariable
impl Clone for JvmLocalVariable
Source§fn clone(&self) -> JvmLocalVariable
fn clone(&self) -> JvmLocalVariable
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 JvmLocalVariable
impl RefUnwindSafe for JvmLocalVariable
impl Send for JvmLocalVariable
impl Sync for JvmLocalVariable
impl Unpin for JvmLocalVariable
impl UnwindSafe for JvmLocalVariable
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