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