pub trait WhitelistFeatureCore {
    fn is_whitelist(&self, account_id: AccountId) -> bool;
    fn whitelist_add(&mut self, account_id: AccountId) -> bool;
    fn whitelist_remove(&mut self, account_id: AccountId) -> bool;
}

Required Methods§

Implementors§