Enum ethers_core::abi::Error [−][src]
pub enum Error {
InvalidName(String),
InvalidData,
SerdeJson(Error),
ParseInt(ParseIntError),
Utf8(FromUtf8Error),
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)Serialization error.
Tuple Fields of SerdeJson
0: ErrorParseInt(ParseIntError)Integer parsing error.
Tuple Fields of ParseInt
Utf8(FromUtf8Error)UTF-8 parsing error.
Tuple Fields of Utf8
Hex(FromHexError)Hex string parsing error.
Tuple Fields of Hex
0: FromHexErrorOther(Error)Other errors.
Tuple Fields of Other
0: ErrorTrait Implementations
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.