pub trait IdentifyChainNetworkBackend {
    // Required method
    fn default_network_backend(&self) -> NetworkBackendType;
}
Expand description

A trait to identify the network backend based on the chain spec.

Required Methods§

source

fn default_network_backend(&self) -> NetworkBackendType

Returns the default network backend.

Implementations on Foreign Types§

source§

impl IdentifyChainNetworkBackend for Box<dyn ChainSpec>

source§

fn default_network_backend(&self) -> NetworkBackendType

Implementors§