Trait sc_chain_spec::Group[][src]

pub trait Group: Clone + Sized {
    type Fork: Fork<Base = Self>;
    fn to_fork(self) -> Self::Fork;
}
Expand description

A ChainSpec extension.

This trait is implemented automatically by ChainSpecGroup macro.

Associated Types

An associated type containing fork definition.

Required methods

Convert to fork type.

Implementations on Foreign Types

Implementors