Enum evm_core::ExitError [−][src]
pub enum ExitError { }
Expand description
Exit error reason.
Variants
Expand description
Trying to pop from an empty stack.
Expand description
Trying to push into a stack over stack limit.
Expand description
Jump destination is invalid.
Expand description
An opcode accesses memory region, but the region is invalid.
Expand description
Encountered the designated invalid opcode.
Expand description
Call stack is too deep (runtime).
Expand description
Create opcode encountered collision (runtime).
Expand description
Create init code exceeds limit (runtime).
Expand description
An opcode accesses external information, but the request is off offset limit (runtime).
Expand description
Execution runs out of gas (runtime).
Expand description
Not enough fund to start the execution (runtime).
Expand description
PC underflowed (unused).
Expand description
Attempt to create an empty account (runtime, unused).
Expand description
Other normal errors.
Trait Implementations
impl Eq for ExitError
[src]
impl StructuralEq for ExitError
[src]
impl StructuralPartialEq for ExitError
[src]
Auto Trait Implementations
impl RefUnwindSafe for ExitError
impl Send for ExitError
impl Sync for ExitError
impl Unpin for ExitError
impl UnwindSafe for ExitError
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more