#[repr(u32)]pub enum CompilerError {
LLVM_EVM(LLVM_EVM),
LLVM_Era(LLVM_Era),
Solc(Solc),
SolcFork(SolcFork),
Zksolc(Zksolc),
Zkvyper(Zkvyper),
}
Variants§
LLVM_EVM(LLVM_EVM)
LLVM_Era(LLVM_Era)
Solc(Solc)
SolcFork(SolcFork)
Zksolc(Zksolc)
Zkvyper(Zkvyper)
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Compiler
impl<'de> Deserialize<'de> for Compiler
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 Compiler
impl Documented for Compiler
type Documentation = &'static ErrorDocumentation
fn get_documentation( &self, ) -> Result<Option<Self::Documentation>, DocumentationError>
Source§impl Error for Compiler
impl Error for Compiler
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 Compiler> for CompilerCode
impl<'_enum> From<&'_enum Compiler> for CompilerCode
Source§fn from(val: &'_enum Compiler) -> CompilerCode
fn from(val: &'_enum Compiler) -> CompilerCode
Converts to this type from the input type.
Source§impl From<Compiler> for CompilerCode
impl From<Compiler> for CompilerCode
Source§fn from(val: Compiler) -> CompilerCode
fn from(val: Compiler) -> CompilerCode
Converts to this type from the input type.
Source§impl From<Compiler> for ZksyncError
impl From<Compiler> for ZksyncError
Source§impl ICustomError<ZksyncError, ZksyncError> for Compiler
impl ICustomError<ZksyncError, ZksyncError> for Compiler
fn to_unified(&self) -> ZksyncError
impl Eq for Compiler
impl StructuralPartialEq for Compiler
Auto Trait Implementations§
impl Freeze for Compiler
impl RefUnwindSafe for Compiler
impl Send for Compiler
impl Sync for Compiler
impl Unpin for Compiler
impl UnwindSafe for Compiler
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