Enum ethers_core::abi::Error [−][src]
pub enum Error {
InvalidName(String),
InvalidData,
SerdeJson(Error),
ParseInt(ParseIntError),
Hex(FromHexError),
Other(Error),
}Expand description
Ethabi errors
Variants
InvalidName(String)Invalid entity such as a bad function name.
Tuple Fields of InvalidName
0: StringInvalid data.
SerdeJson(Error)This is supported on crate feature
full-serde only.Serialization error.
Tuple Fields of SerdeJson
0: ErrorParseInt(ParseIntError)This is supported on crate feature
full-serde only.Integer parsing error.
Tuple Fields of ParseInt
Hex(FromHexError)This is supported on crate feature
full-serde only.Hex string parsing error.
Tuple Fields of Hex
0: FromHexErrorOther(Error)This is supported on crate feature
full-serde only.Other errors.
Tuple Fields of Other
0: ErrorTrait Implementations
Performs the conversion.
Performs the conversion.
Performs the conversion.