pub enum InnerError {
Panic,
OutOfGas,
ApiError(ApiError),
}Expand description
The error returned by inner PVM invocations.
Variants§
Panic
PANIC Completed with a panic.
OutOfGas
OOG Completed by running out of gas.
ApiError(ApiError)
Some other error occurred.
Trait Implementations§
Source§impl Debug for InnerError
impl Debug for InnerError
Auto Trait Implementations§
impl Freeze for InnerError
impl RefUnwindSafe for InnerError
impl Send for InnerError
impl Sync for InnerError
impl Unpin for InnerError
impl UnwindSafe for InnerError
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