pub trait InitializeMembers<AccountId> {
    // Required method
    fn initialize_members(members: &[AccountId]);
}
Expand description

Trait for type that can handle the initialization of account IDs at genesis.

Required Methods§

source

fn initialize_members(members: &[AccountId])

Initialize the members to the given members.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<T> InitializeMembers<T> for ()

Implementors§