Trait fc_rpc_core::NetApiServer
source · pub trait NetApiServer: Sized + Send + Sync + 'static {
// Required methods
fn version(&self) -> RpcResult<String>;
fn peer_count(&self) -> RpcResult<PeerCount>;
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§
sourcefn peer_count(&self) -> RpcResult<PeerCount>
fn peer_count(&self) -> RpcResult<PeerCount>
Returns number of peers connected to node.
sourcefn is_listening(&self) -> RpcResult<bool>
fn is_listening(&self) -> RpcResult<bool>
Returns true if client is actively listening for network connections. Otherwise false.
Provided Methods§
Object Safety§
This trait is not object safe.