#[repr(u32)]pub enum ErrorCode {
General = 1,
InnerTxError = 2,
VmError = 3,
Unknown = 4,
GenericError = 0,
}
Expand description
Auto-generated discriminant enum variants
Variants§
General = 1
§Summary
Execution reverted due to a failure.
§Description
This error indicates that the transaction execution was reverted.
InnerTxError = 2
§Summary
An inner transaction error occurred.
§Description
This error is emitted when an inner transaction within the VM fails, typically related to bootloader execution.
VmError = 3
§Summary
A generic VM error.
§Description
This error indicates a generic failure within the VM, without specific details.
Unknown = 4
§Summary
An unknown VM revert reason was encountered.
§Description
This error is emitted when the VM encounters a revert reason that is not recognized. In most cases, this error may also indicate that the transaction exhausted all the gas allocated for its execution.
GenericError = 0
Implementations§
Source§impl RevertCode
impl RevertCode
Trait Implementations§
Source§impl AsRef<str> for RevertCode
impl AsRef<str> for RevertCode
Source§impl Clone for RevertCode
impl Clone for RevertCode
Source§fn clone(&self) -> RevertCode
fn clone(&self) -> RevertCode
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RevertCode
impl Debug for RevertCode
Source§impl<'_enum> From<&'_enum Revert> for RevertCode
impl<'_enum> From<&'_enum Revert> for RevertCode
Source§fn from(val: &'_enum Revert) -> RevertCode
fn from(val: &'_enum Revert) -> RevertCode
Converts to this type from the input type.
Source§impl From<Revert> for RevertCode
impl From<Revert> for RevertCode
Source§fn from(val: Revert) -> RevertCode
fn from(val: Revert) -> RevertCode
Converts to this type from the input type.
Source§impl NamedError for RevertCode
impl NamedError for RevertCode
fn get_error_name(&self) -> String
Source§impl PartialEq for RevertCode
impl PartialEq for RevertCode
impl Copy for RevertCode
impl Eq for RevertCode
impl StructuralPartialEq for RevertCode
Auto Trait Implementations§
impl Freeze for RevertCode
impl RefUnwindSafe for RevertCode
impl Send for RevertCode
impl Sync for RevertCode
impl Unpin for RevertCode
impl UnwindSafe for RevertCode
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