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