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: String
Invalid data.
SerdeJson(Error)
Serialization error.
Tuple Fields of SerdeJson
0: Error
ParseInt(ParseIntError)
Integer parsing error.
Tuple Fields of ParseInt
Hex(FromHexError)
Hex string parsing error.
Tuple Fields of Hex
0: FromHexError
Other(Error)
Other errors.
Tuple Fields of Other
0: Error
Trait Implementations
Performs the conversion.
Performs the conversion.
Performs the conversion.