pub type ItemDepositOf<T, I> = ItemDeposit<DepositBalanceOf<T, I>, <T as SystemConfig>::AccountId>;Expand description
A type that holds the deposit for a single item.
Aliased Type§
struct ItemDepositOf<T, I> {
    pub account: <T as Config>::AccountId,
    pub amount: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance,
}Fields§
§account: <T as Config>::AccountIdA depositor account.
amount: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::BalanceAn amount that gets reserved.