pub trait Transfer<AccountId>: Inspect<AccountId> {
    fn transfer(item: &Self::ItemId, destination: &AccountId) -> DispatchResult;
}
Expand description

Trait for providing a non-fungible set of items which can only be transferred.

Required Methods§

Transfer item into destination account.

Implementors§