Struct fuel_tx::InstructionResult
source · pub struct InstructionResult { /* private fields */ }
Expand description
Describe a panic reason with the instruction that generated it
Implementations§
source§impl InstructionResult
impl InstructionResult
sourcepub const fn error(reason: PanicReason, instruction: u32) -> InstructionResult
pub const fn error(reason: PanicReason, instruction: u32) -> InstructionResult
Represents an error described by a reason and an instruction.
sourcepub const fn reason(&self) -> &PanicReason
pub const fn reason(&self) -> &PanicReason
Underlying panic reason
sourcepub const fn instruction(&self) -> &u32
pub const fn instruction(&self) -> &u32
Underlying instruction
sourcepub const fn is_success(&self) -> bool
pub const fn is_success(&self) -> bool
This result represents success?
Trait Implementations§
source§impl Clone for InstructionResult
impl Clone for InstructionResult
source§fn clone(&self) -> InstructionResult
fn clone(&self) -> InstructionResult
Returns a copy 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 InstructionResult
impl Debug for InstructionResult
source§impl From<u64> for InstructionResult
impl From<u64> for InstructionResult
source§fn from(val: u64) -> InstructionResult
fn from(val: u64) -> InstructionResult
Converts to this type from the input type.
source§impl Hash for InstructionResult
impl Hash for InstructionResult
source§impl PartialEq<InstructionResult> for InstructionResult
impl PartialEq<InstructionResult> for InstructionResult
source§fn eq(&self, other: &InstructionResult) -> bool
fn eq(&self, other: &InstructionResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for InstructionResult
impl Eq for InstructionResult
impl StructuralEq for InstructionResult
impl StructuralPartialEq for InstructionResult
Auto Trait Implementations§
impl RefUnwindSafe for InstructionResult
impl Send for InstructionResult
impl Sync for InstructionResult
impl Unpin for InstructionResult
impl UnwindSafe for InstructionResult
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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more