pub struct JvmInstructionCompat {
pub opcode: String,
pub operands: Vec<String>,
}Expand description
Compatibility layer: legacy JVM instruction representation
Fields§
§opcode: StringOpcode name
operands: Vec<String>List of operands as strings
Trait Implementations§
Source§impl Clone for JvmInstructionCompat
impl Clone for JvmInstructionCompat
Source§fn clone(&self) -> JvmInstructionCompat
fn clone(&self) -> JvmInstructionCompat
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 JvmInstructionCompat
impl RefUnwindSafe for JvmInstructionCompat
impl Send for JvmInstructionCompat
impl Sync for JvmInstructionCompat
impl Unpin for JvmInstructionCompat
impl UnsafeUnpin for JvmInstructionCompat
impl UnwindSafe for JvmInstructionCompat
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