pub enum AbstractInsnNode {
Label(LabelNode),
LineNumber(LineNumberInsnNode),
Insn(Insn),
JumpLabel(JumpLabelInsnNode),
}Variants§
Trait Implementations§
Source§impl Clone for AbstractInsnNode
impl Clone for AbstractInsnNode
Source§fn clone(&self) -> AbstractInsnNode
fn clone(&self) -> AbstractInsnNode
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 AbstractInsnNode
impl Debug for AbstractInsnNode
Source§impl From<Insn> for AbstractInsnNode
impl From<Insn> for AbstractInsnNode
Source§impl From<JumpLabelInsnNode> for AbstractInsnNode
impl From<JumpLabelInsnNode> for AbstractInsnNode
Source§fn from(value: JumpLabelInsnNode) -> Self
fn from(value: JumpLabelInsnNode) -> Self
Converts to this type from the input type.
Source§impl From<LabelNode> for AbstractInsnNode
impl From<LabelNode> for AbstractInsnNode
Source§impl From<LineNumberInsnNode> for AbstractInsnNode
impl From<LineNumberInsnNode> for AbstractInsnNode
Source§fn from(value: LineNumberInsnNode) -> Self
fn from(value: LineNumberInsnNode) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AbstractInsnNode
impl RefUnwindSafe for AbstractInsnNode
impl Send for AbstractInsnNode
impl Sync for AbstractInsnNode
impl Unpin for AbstractInsnNode
impl UnsafeUnpin for AbstractInsnNode
impl UnwindSafe for AbstractInsnNode
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