Enum evm_runtime::ExitReason [−][src]
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 explict 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
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for ExitReasonimpl Send for ExitReasonimpl Sync for ExitReasonimpl Unpin for ExitReasonimpl UnwindSafe for ExitReasonBlanket Implementations
Mutably borrows from an owned value. Read more
type Output = T
type Output = TShould always be Self