pub trait GetSalary<Rank, AccountId, Balance> {
    // Required method
    fn get_salary(rank: Rank, who: &AccountId) -> Balance;
}
Expand description

Retrieve the salary for a member of a particular rank.

Required Methods§

source

fn get_salary(rank: Rank, who: &AccountId) -> Balance

Retrieve the salary for a given rank. The account ID is also supplied in case this changes things.

Implementors§

source§

impl<A, R, B, C: Convert<R, B>> GetSalary<R, A, B> for ConvertRank<C>