pub trait Mutate<AccountId>: Inspect<AccountId> {
// Required method
fn set(
asset: Self::AssetId,
from: &AccountId,
name: Vec<u8>,
symbol: Vec<u8>,
decimals: u8,
) -> Result<(), DispatchError>;
}
Required Methods§
fn set( asset: Self::AssetId, from: &AccountId, name: Vec<u8>, symbol: Vec<u8>, decimals: u8, ) -> Result<(), DispatchError>
Object Safety§
This trait is not object safe.