pub trait Mutate<AccountId>: Inspect<AccountId> {
    fn approve(
        asset: Self::AssetId,
        owner: &AccountId,
        delegate: &AccountId,
        amount: Self::Balance
    ) -> DispatchResult;
fn transfer_from(
        asset: Self::AssetId,
        owner: &AccountId,
        delegate: &AccountId,
        dest: &AccountId,
        amount: Self::Balance
    ) -> DispatchResult; }

Required methods

Implementors