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.
Invalid data.
SerdeJson(Error)
Serialization error.
ParseInt(ParseIntError)
Integer parsing error.
Utf8(FromUtf8Error)
UTF-8 parsing error.
Hex(FromHexError)
Hex string parsing error.
Other(Error)
Other errors.
Trait Implementations
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.