pub trait Web3ApiClient: ClientT {
// Provided methods
fn client_version(
&self,
) -> impl Future<Output = Result<String, Error>> + Send { ... }
fn sha3(
&self,
input: Bytes,
) -> impl Future<Output = Result<FixedBytes<32>, Error>> + Send { ... }
}
Expand description
Client implementation for the Web3Api
RPC API.
Provided Methods§
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.