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