#[non_exhaustive]#[repr(u32)]pub enum RevertError {
General {
msg: String,
data: Vec<u8>,
},
InnerTxError = 2,
VmError = 3,
Unknown {
function_selector: String,
data: String,
},
GenericError {
message: String,
},
}
Expand description
Domain: AnvilZKsync
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
General
§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
§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
Trait Implementations§
Source§impl CustomErrorMessage for Revert
impl CustomErrorMessage for Revert
fn get_message(&self) -> String
Source§impl<'de> Deserialize<'de> for Revert
impl<'de> Deserialize<'de> for Revert
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Documented for Revert
impl Documented for Revert
type Documentation = &'static ErrorDocumentation
fn get_documentation( &self, ) -> Result<Option<Self::Documentation>, DocumentationError>
Source§impl Error for Revert
impl Error for Revert
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
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 AnvilZksync
impl From<Revert> for AnvilZksync
Source§impl From<Revert> for PackedError<ZksyncError>
impl From<Revert> for PackedError<ZksyncError>
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 From<Revert> for SerializedError
impl From<Revert> for SerializedError
Source§impl From<Revert> for ZksyncError
impl From<Revert> for ZksyncError
Source§impl ICustomError<ZksyncError, ZksyncError> for Revert
impl ICustomError<ZksyncError, ZksyncError> for Revert
fn to_unified(&self) -> ZksyncError
Source§impl NamedError for Revert
impl NamedError for Revert
fn get_error_name(&self) -> String
impl Eq for Revert
impl StructuralPartialEq for Revert
Auto Trait Implementations§
impl Freeze for Revert
impl RefUnwindSafe for Revert
impl Send for Revert
impl Sync for Revert
impl Unpin for Revert
impl UnwindSafe for Revert
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