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