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