Trait cfx_rpc_utils::error::api::IntoEthApiError
source · 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§
sourcefn into_eth_err<E>(self) -> Ewhere
E: FromEthApiError,
fn into_eth_err<E>(self) -> Ewhere
E: FromEthApiError,
Converts into error via EthApiError
.
Object Safety§
This trait is not object safe.