#[non_exhaustive]#[repr(u32)]pub enum HardhatZksyncError {
GenericError {
message: String,
},
}
Expand description
Errors originating in the ZKsync codebase for HardHat.
Domain: Hardhat
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.
Trait Implementations§
Source§impl AsRef<str> for HardhatZksync
impl AsRef<str> for HardhatZksync
Source§impl Clone for HardhatZksync
impl Clone for HardhatZksync
Source§fn clone(&self) -> HardhatZksync
fn clone(&self) -> HardhatZksync
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 CustomErrorMessage for HardhatZksync
impl CustomErrorMessage for HardhatZksync
fn get_message(&self) -> String
Source§impl Debug for HardhatZksync
impl Debug for HardhatZksync
Source§impl<'de> Deserialize<'de> for HardhatZksync
impl<'de> Deserialize<'de> for HardhatZksync
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 Display for HardhatZksync
impl Display for HardhatZksync
Source§impl Documented for HardhatZksync
impl Documented for HardhatZksync
type Documentation = &'static ErrorDocumentation
fn get_documentation( &self, ) -> Result<Option<Self::Documentation>, DocumentationError>
Source§impl Error for HardhatZksync
impl Error for HardhatZksync
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 HardhatZksync> for HardhatZksyncCode
impl<'_enum> From<&'_enum HardhatZksync> for HardhatZksyncCode
Source§fn from(val: &'_enum HardhatZksync) -> HardhatZksyncCode
fn from(val: &'_enum HardhatZksync) -> HardhatZksyncCode
Converts to this type from the input type.
Source§impl From<Error> for HardhatZksync
impl From<Error> for HardhatZksync
Source§impl From<HardhatZksync> for Hardhat
impl From<HardhatZksync> for Hardhat
Source§fn from(val: HardhatZksync) -> Self
fn from(val: HardhatZksync) -> Self
Converts to this type from the input type.
Source§impl From<HardhatZksync> for HardhatZksyncCode
impl From<HardhatZksync> for HardhatZksyncCode
Source§fn from(val: HardhatZksync) -> HardhatZksyncCode
fn from(val: HardhatZksync) -> HardhatZksyncCode
Converts to this type from the input type.
Source§impl From<HardhatZksync> for PackedError<ZksyncError>
impl From<HardhatZksync> for PackedError<ZksyncError>
Source§fn from(value: HardhatZksync) -> Self
fn from(value: HardhatZksync) -> Self
Converts to this type from the input type.
Source§impl From<HardhatZksync> for SerializedError
impl From<HardhatZksync> for SerializedError
Source§fn from(value: HardhatZksync) -> Self
fn from(value: HardhatZksync) -> Self
Converts to this type from the input type.
Source§impl From<HardhatZksync> for ZksyncError
impl From<HardhatZksync> for ZksyncError
Source§fn from(val: HardhatZksync) -> Self
fn from(val: HardhatZksync) -> Self
Converts to this type from the input type.
Source§impl ICustomError<ZksyncError, ZksyncError> for HardhatZksync
impl ICustomError<ZksyncError, ZksyncError> for HardhatZksync
fn to_unified(&self) -> ZksyncError
Source§impl NamedError for HardhatZksync
impl NamedError for HardhatZksync
fn get_error_name(&self) -> String
Source§impl PartialEq for HardhatZksync
impl PartialEq for HardhatZksync
Source§impl Serialize for HardhatZksync
impl Serialize for HardhatZksync
impl Eq for HardhatZksync
impl StructuralPartialEq for HardhatZksync
Auto Trait Implementations§
impl Freeze for HardhatZksync
impl RefUnwindSafe for HardhatZksync
impl Send for HardhatZksync
impl Sync for HardhatZksync
impl Unpin for HardhatZksync
impl UnwindSafe for HardhatZksync
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