pub trait IntoEthApiError: Into<EthApiError> {
// Required method
fn into_eth_err<E>(self) -> E
where E: FromEthApiError;
}Available on crate feature
rpc only.Expand description
Helper trait to wrap core EthApiError.
Required Methods§
Sourcefn into_eth_err<E>(self) -> Ewhere
E: FromEthApiError,
fn into_eth_err<E>(self) -> Ewhere
E: FromEthApiError,
Converts into error via EthApiError.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".