Trait Mutate
pub trait Mutate<AccountId>: Inspect<AccountId> {
    // Required methods
    fn approve(
        asset: Self::AssetId,
        owner: &AccountId,
        delegate: &AccountId,
        amount: Self::Balance,
    ) -> Result<(), DispatchError>;
    fn transfer_from(
        asset: Self::AssetId,
        owner: &AccountId,
        delegate: &AccountId,
        dest: &AccountId,
        amount: Self::Balance,
    ) -> Result<(), DispatchError>;
}Required Methods§
fn approve( asset: Self::AssetId, owner: &AccountId, delegate: &AccountId, amount: Self::Balance, ) -> Result<(), DispatchError>
fn transfer_from( asset: Self::AssetId, owner: &AccountId, delegate: &AccountId, dest: &AccountId, amount: Self::Balance, ) -> Result<(), DispatchError>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.