Enum evm_core::ExitReason
source · pub enum ExitReason {
Succeed(ExitSucceed),
Error(ExitError),
Revert(ExitRevert),
Fatal(ExitFatal),
}
Expand description
Exit reason.
Variants
Succeed(ExitSucceed)
Machine has succeeded.
Error(ExitError)
Machine returns a normal EVM error.
Revert(ExitRevert)
Machine encountered an explicit revert.
Fatal(ExitFatal)
Machine encountered an error that is not supposed to be normal EVM errors, such as requiring too much memory to execute.
Implementations
Trait Implementations
sourceimpl Clone for ExitReason
impl Clone for ExitReason
sourcefn clone(&self) -> ExitReason
fn clone(&self) -> ExitReason
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 moresourceimpl Debug for ExitReason
impl Debug for ExitReason
sourceimpl From<ExitError> for ExitReason
impl From<ExitError> for ExitReason
sourceimpl From<ExitFatal> for ExitReason
impl From<ExitFatal> for ExitReason
sourceimpl From<ExitRevert> for ExitReason
impl From<ExitRevert> for ExitReason
sourcefn from(s: ExitRevert) -> Self
fn from(s: ExitRevert) -> Self
Converts to this type from the input type.
sourceimpl From<ExitSucceed> for ExitReason
impl From<ExitSucceed> for ExitReason
sourcefn from(s: ExitSucceed) -> Self
fn from(s: ExitSucceed) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<ExitReason> for ExitReason
impl PartialEq<ExitReason> for ExitReason
sourcefn eq(&self, other: &ExitReason) -> bool
fn eq(&self, other: &ExitReason) -> bool
impl Eq for ExitReason
impl StructuralEq for ExitReason
impl StructuralPartialEq for ExitReason
Auto Trait Implementations
impl RefUnwindSafe for ExitReason
impl Send for ExitReason
impl Sync for ExitReason
impl Unpin for ExitReason
impl UnwindSafe for ExitReason
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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