Trait reth::rpc::api::NetApiServer

source ·
pub trait NetApiServer: Sized + Send + Sync + 'static {
    // Required methods
    fn version(&self) -> Result<String, ErrorObject<'static>>;
    fn peer_count(&self) -> Result<PeerCount, ErrorObject<'static>>;
    fn is_listening(&self) -> Result<bool, ErrorObject<'static>>;

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

Server trait implementation for the NetApi RPC API.

Required Methods§

source

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

Returns the network ID.

source

fn peer_count(&self) -> Result<PeerCount, ErrorObject<'static>>

Returns number of peers connected to node.

source

fn is_listening(&self) -> Result<bool, ErrorObject<'static>>

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.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<Net, Eth> NetApiServer for NetApi<Net, Eth>
where Net: PeersInfo + 'static, Eth: EthApiSpec + 'static,

Net rpc implementation

source§

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

Handler for net_version

source§

fn peer_count(&self) -> Result<PeerCount, ErrorObject<'static>>

Handler for net_peerCount

source§

fn is_listening(&self) -> Result<bool, ErrorObject<'static>>

Handler for net_listening

Implementors§