reth_rpc_api::servers

Trait NetApiServer

Source
pub trait NetApiServer:
    Sized
    + Send
    + Sync
    + 'static {
    // Required methods
    fn version(&self) -> RpcResult<String>;
    fn peer_count(&self) -> RpcResult<U64>;
    fn is_listening(&self) -> RpcResult<bool>;

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

Server trait implementation for the NetApi RPC API.

Required Methods§

Source

fn version(&self) -> RpcResult<String>

Returns the network ID.

Source

fn peer_count(&self) -> RpcResult<U64>

Returns number of peers connected to node.

Source

fn is_listening(&self) -> RpcResult<bool>

Returns true if client is actively listening for network connections. Otherwise false.

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§