Trait sc_client_api::UsageProvider[][src]

pub trait UsageProvider<Block: Block> {
    fn usage_info(&self) -> ClientInfo<Block>;
}
Expand description

Usage Information Provider interface

Required methods

Get usage info about current client.

Implementors

impl<B, E, Block, RA> UsageProvider<Block> for Client<B, E, Block, RA> where
    B: Backend<Block>,
    E: CallExecutor<Block>,
    Block: BlockT