pub struct LookupSwitchInsnNode {
pub insn: InsnNode,
pub default_offset: i32,
pub pairs: Vec<(i32, i32)>,
}Fields§
§insn: InsnNode§default_offset: i32§pairs: Vec<(i32, i32)>Trait Implementations§
Source§impl Clone for LookupSwitchInsnNode
impl Clone for LookupSwitchInsnNode
Source§fn clone(&self) -> LookupSwitchInsnNode
fn clone(&self) -> LookupSwitchInsnNode
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 moreSource§impl Debug for LookupSwitchInsnNode
impl Debug for LookupSwitchInsnNode
Source§impl From<LookupSwitchInsnNode> for Insn
impl From<LookupSwitchInsnNode> for Insn
Source§fn from(value: LookupSwitchInsnNode) -> Self
fn from(value: LookupSwitchInsnNode) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LookupSwitchInsnNode
impl RefUnwindSafe for LookupSwitchInsnNode
impl Send for LookupSwitchInsnNode
impl Sync for LookupSwitchInsnNode
impl Unpin for LookupSwitchInsnNode
impl UnsafeUnpin for LookupSwitchInsnNode
impl UnwindSafe for LookupSwitchInsnNode
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