pub struct SerializedError {
pub code: ErrorCode,
pub message: String,
pub data: Value,
}
Fields§
§code: ErrorCode
§message: String
§data: Value
Implementations§
Trait Implementations§
Source§impl Clone for SerializedError
impl Clone for SerializedError
Source§fn clone(&self) -> SerializedError
fn clone(&self) -> SerializedError
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 Debug for SerializedError
impl Debug for SerializedError
Source§impl<'de> Deserialize<'de> for SerializedError
impl<'de> Deserialize<'de> for SerializedError
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 SerializedError
impl Display for SerializedError
Source§impl Error for SerializedError
impl Error for SerializedError
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 From<API> for SerializedError
impl From<API> for SerializedError
Source§impl From<AnvilEnvironment> for SerializedError
impl From<AnvilEnvironment> for SerializedError
Source§fn from(value: AnvilEnvironment) -> Self
fn from(value: AnvilEnvironment) -> 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<EraVM> for SerializedError
impl From<EraVM> for SerializedError
Source§impl From<ExecutionPlatform> for SerializedError
impl From<ExecutionPlatform> for SerializedError
Source§fn from(value: ExecutionPlatform) -> Self
fn from(value: ExecutionPlatform) -> 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<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<Halt> for SerializedError
impl From<Halt> for SerializedError
Source§impl From<HardhatUpstream> for SerializedError
impl From<HardhatUpstream> for SerializedError
Source§fn from(value: HardhatUpstream) -> Self
fn from(value: HardhatUpstream) -> Self
Converts to this type from the input type.
Source§impl From<HardhatZksync> for SerializedError
impl From<HardhatZksync> for SerializedError
Source§fn from(value: HardhatZksync) -> Self
fn from(value: HardhatZksync) -> Self
Converts to this type from the input type.
Source§impl From<LLVM_EVM> for SerializedError
impl From<LLVM_EVM> for SerializedError
Source§impl From<LLVM_Era> for SerializedError
impl From<LLVM_Era> for SerializedError
Source§impl From<Revert> for SerializedError
impl From<Revert> for SerializedError
Source§impl From<Sequencer> for SerializedError
impl From<Sequencer> for SerializedError
Source§impl From<Solc> for SerializedError
impl From<Solc> for SerializedError
Source§impl From<SolcFork> for SerializedError
impl From<SolcFork> for SerializedError
Source§impl From<Zksolc> for SerializedError
impl From<Zksolc> for SerializedError
Source§impl From<Zkvyper> for SerializedError
impl From<Zkvyper> for SerializedError
Source§impl IError<UntypedErrorObject> for SerializedError
impl IError<UntypedErrorObject> for SerializedError
fn get_identifier(&self) -> Identifier
fn get_message(&self) -> String
fn get_data(&self) -> UntypedErrorObject
Source§impl PartialEq for SerializedError
impl PartialEq for SerializedError
Source§impl Serialize for SerializedError
impl Serialize for SerializedError
impl Eq for SerializedError
impl StructuralPartialEq for SerializedError
Auto Trait Implementations§
impl Freeze for SerializedError
impl RefUnwindSafe for SerializedError
impl Send for SerializedError
impl Sync for SerializedError
impl Unpin for SerializedError
impl UnwindSafe for SerializedError
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