Trait IntoEthApiError
pub trait IntoEthApiError: Into<EthApiError> {
// Required method
fn into_eth_err<E>(self) -> E
where E: FromEthApiError;
}
Expand description
Helper trait to wrap core [EthApiError
].
Required Methods§
fn 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", so this trait is not object safe.