Struct fuel_asm::InstructionResult
source · [−]pub struct InstructionResult { /* private fields */ }
Expand description
Describe a panic reason with the instruction that generated it
Implementations
sourceimpl InstructionResult
impl InstructionResult
sourcepub const fn error(reason: PanicReason, instruction: Instruction) -> Self
pub const fn error(reason: PanicReason, instruction: Instruction) -> Self
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) -> &Instruction
pub const fn instruction(&self) -> &Instruction
Underlying instruction
sourcepub const fn is_success(&self) -> bool
pub const fn is_success(&self) -> bool
This result represents success?
Trait Implementations
sourceimpl<'arbitrary> Arbitrary<'arbitrary> for InstructionResult
impl<'arbitrary> Arbitrary<'arbitrary> for InstructionResult
sourcefn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of Self
from the given unstructured data. Read more
sourcefn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of Self
from the entirety of the given
unstructured data. Read more
sourceimpl Clone for InstructionResult
impl Clone for InstructionResult
sourcefn clone(&self) -> InstructionResult
fn clone(&self) -> InstructionResult
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for InstructionResult
impl Debug for InstructionResult
sourceimpl<'de> Deserialize<'de> for InstructionResult
impl<'de> Deserialize<'de> for InstructionResult
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl From<InstructionResult> for Instruction
impl From<InstructionResult> for Instruction
sourcefn from(r: InstructionResult) -> Self
fn from(r: InstructionResult) -> Self
Converts to this type from the input type.
sourceimpl From<InstructionResult> for Opcode
impl From<InstructionResult> for Opcode
sourcefn from(r: InstructionResult) -> Self
fn from(r: InstructionResult) -> Self
Converts to this type from the input type.
sourceimpl From<InstructionResult> for PanicReason
impl From<InstructionResult> for PanicReason
sourcefn from(r: InstructionResult) -> Self
fn from(r: InstructionResult) -> Self
Converts to this type from the input type.
sourceimpl From<InstructionResult> for Word
impl From<InstructionResult> for Word
sourcefn from(r: InstructionResult) -> Word
fn from(r: InstructionResult) -> Word
Converts to this type from the input type.
sourceimpl From<u64> for InstructionResult
impl From<u64> for InstructionResult
sourceimpl Hash for InstructionResult
impl Hash for InstructionResult
sourceimpl PartialEq<InstructionResult> for InstructionResult
impl PartialEq<InstructionResult> for InstructionResult
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &InstructionResult) -> bool
fn ne(&self, other: &InstructionResult) -> bool
This method tests for !=
.
sourceimpl Serialize for InstructionResult
impl Serialize for InstructionResult
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more