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