fc_rpc

Trait Web3ApiServer

Source
pub trait Web3ApiServer:
    Sized
    + Send
    + Sync
    + 'static {
    // Required methods
    fn client_version(&self) -> Result<String, ErrorObject<'static>>;
    fn sha3(&self, input: Bytes) -> Result<H256, ErrorObject<'static>>;

    // Provided method
    fn into_rpc(self) -> RpcModule<Self> { ... }
}
Expand description

Server trait implementation for the Web3Api RPC API.

Required Methods§

Source

fn client_version(&self) -> Result<String, ErrorObject<'static>>

Returns current client version.

Source

fn sha3(&self, input: Bytes) -> Result<H256, ErrorObject<'static>>

Returns sha3 of the given data

Provided Methods§

Source

fn into_rpc(self) -> RpcModule<Self>

Collects all the methods and subscriptions defined in the trait and adds them into a single RpcModule.

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.

Implementors§

Source§

impl<B, C> Web3ApiServer for Web3<B, C>
where B: BlockT, C: ProvideRuntimeApi<B> + HeaderBackend<B> + 'static, C::Api: EthereumRuntimeRPCApi<B>,