[][src]Enum ethers_contract::ContractError

pub enum ContractError {
    DecodingError(AbiError),
    DetokenizationError(InvalidOutputType),
    ClientError(ClientError),
    ProviderError(ProviderError),
    ConstructorError,
    ContractNotDeployed,
}

An Error which is thrown when interacting with a smart contract

Variants

DecodingError(AbiError)

Thrown when the ABI decoding fails

DetokenizationError(InvalidOutputType)

Thrown when detokenizing an argument

ClientError(ClientError)

Thrown when a client call fails

ProviderError(ProviderError)

Thrown when a provider call fails

ConstructorError

Thrown during deployment if a constructor argument was passed in the deploy call but a constructor was not present in the ABI

ContractNotDeployed

Thrown if a contract address is not found in the deployment transaction's receipt

Trait Implementations

impl Debug for ContractError[src]

impl Display for ContractError[src]

impl Error for ContractError[src]

impl From<ClientError> for ContractError[src]

impl From<Error> for ContractError[src]

impl From<InvalidOutputType> for ContractError[src]

impl From<ProviderError> for ContractError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,