pub trait ForWithdrawal {
    // Required method
    fn for_withdrawal(
        &self,
        divisibility: u8,
        withdraw_strategy: WithdrawStrategy
    ) -> Option<Decimal>;
}

Required Methods§

source

fn for_withdrawal( &self, divisibility: u8, withdraw_strategy: WithdrawStrategy ) -> Option<Decimal>

Implementors§