pub struct SelfDestruct;Expand description
Representation of the selfdestruct instruction.
Trait Implementations§
Source§impl Clone for SelfDestruct
impl Clone for SelfDestruct
Source§fn clone(&self) -> SelfDestruct
fn clone(&self) -> SelfDestruct
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 SelfDestruct
impl Debug for SelfDestruct
Source§impl<T> From<SelfDestruct> for Op<T>where
T: ?Sized + Immediates,
impl<T> From<SelfDestruct> for Op<T>where
T: ?Sized + Immediates,
Source§fn from(op: SelfDestruct) -> Self
fn from(op: SelfDestruct) -> Self
Converts to this type from the input type.
Source§impl From<SelfDestruct> for u8
impl From<SelfDestruct> for u8
Source§fn from(_: SelfDestruct) -> Self
fn from(_: SelfDestruct) -> Self
Converts to this type from the input type.
Source§impl Hash for SelfDestruct
impl Hash for SelfDestruct
Source§impl Operation for SelfDestruct
impl Operation for SelfDestruct
Source§type ImmediateRef = Void
type ImmediateRef = Void
The return root type of
Operation::immediate_mut and
Operation::immediate.Source§type Code = SelfDestruct
type Code = SelfDestruct
The return type of
Operation::code.Source§fn immediate(&self) -> Option<&Self::ImmediateRef>
fn immediate(&self) -> Option<&Self::ImmediateRef>
Get a shared reference to the immediate argument of this operation,
if one exists.
Source§fn immediate_mut(&mut self) -> Option<&mut Self::ImmediateRef>
fn immediate_mut(&mut self) -> Option<&mut Self::ImmediateRef>
Get a mutable reference to the immediate argument of this operation,
if one exists.
Source§fn into_immediate(self) -> Option<Self::Immediate>
fn into_immediate(self) -> Option<Self::Immediate>
Consume this operation and return its immediate argument, if one
exists.
Source§fn is_jump(&self) -> bool
fn is_jump(&self) -> bool
Returns true if the current instruction changes the program counter (other
than incrementing it.)
Source§fn is_jump_target(&self) -> bool
fn is_jump_target(&self) -> bool
Returns true if the current instruction is a valid destination for jumps.
Source§impl Ord for SelfDestruct
impl Ord for SelfDestruct
Source§fn cmp(&self, other: &SelfDestruct) -> Ordering
fn cmp(&self, other: &SelfDestruct) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SelfDestruct
impl PartialEq for SelfDestruct
Source§impl PartialOrd for SelfDestruct
impl PartialOrd for SelfDestruct
impl Copy for SelfDestruct
impl Eq for SelfDestruct
impl StructuralPartialEq for SelfDestruct
Auto Trait Implementations§
impl Freeze for SelfDestruct
impl RefUnwindSafe for SelfDestruct
impl Send for SelfDestruct
impl Sync for SelfDestruct
impl Unpin for SelfDestruct
impl UnwindSafe for SelfDestruct
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