#[non_exhaustive]#[repr(u32)]pub enum ZksolcError {
GenericError {
message: String,
},
}
Expand description
Errors originating in the ZKsync Solidity compiler for EraVM and EVM.
Domain: Compiler
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 CustomErrorMessage for Zksolc
impl CustomErrorMessage for Zksolc
fn get_message(&self) -> String
Source§impl<'de> Deserialize<'de> for Zksolc
impl<'de> Deserialize<'de> for Zksolc
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 Documented for Zksolc
impl Documented for Zksolc
type Documentation = &'static ErrorDocumentation
fn get_documentation( &self, ) -> Result<Option<Self::Documentation>, DocumentationError>
Source§impl Error for Zksolc
impl Error for Zksolc
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 Zksolc> for ZksolcCode
impl<'_enum> From<&'_enum Zksolc> for ZksolcCode
Source§fn from(val: &'_enum Zksolc) -> ZksolcCode
fn from(val: &'_enum Zksolc) -> ZksolcCode
Converts to this type from the input type.
Source§impl From<Zksolc> for PackedError<ZksyncError>
impl From<Zksolc> for PackedError<ZksyncError>
Source§impl From<Zksolc> for SerializedError
impl From<Zksolc> for SerializedError
Source§impl From<Zksolc> for ZksolcCode
impl From<Zksolc> for ZksolcCode
Source§fn from(val: Zksolc) -> ZksolcCode
fn from(val: Zksolc) -> ZksolcCode
Converts to this type from the input type.
Source§impl From<Zksolc> for ZksyncError
impl From<Zksolc> for ZksyncError
Source§impl ICustomError<ZksyncError, ZksyncError> for Zksolc
impl ICustomError<ZksyncError, ZksyncError> for Zksolc
fn to_unified(&self) -> ZksyncError
Source§impl NamedError for Zksolc
impl NamedError for Zksolc
fn get_error_name(&self) -> String
impl Eq for Zksolc
impl StructuralPartialEq for Zksolc
Auto Trait Implementations§
impl Freeze for Zksolc
impl RefUnwindSafe for Zksolc
impl Send for Zksolc
impl Sync for Zksolc
impl Unpin for Zksolc
impl UnwindSafe for Zksolc
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