pub trait EmployeeRoleTrait {
    // Required methods
    fn get_base_salary(&self) -> &[BaseSalaryProperty];
    fn take_base_salary(&mut self) -> Vec<BaseSalaryProperty>;
    fn get_salary_currency(&self) -> &[SalaryCurrencyProperty];
    fn take_salary_currency(&mut self) -> Vec<SalaryCurrencyProperty>;
}
Expand description

This trait is for properties from https://schema.org/EmployeeRole.

Required Methods§

Implementors§