pub type ListNodes<T: Config<I>, I: 'static = ()> = CountedStorageMap<_GeneratedPrefixForStorageListNodes<T, I>, Twox64Concat, T::AccountId, Node<T, I>>;Expand description
A single node, within some bag.
Nodes store links forward and back within their respective bags.
Storage type is [CountedStorageMap] with key type T :: AccountId and value type list :: Node < T, I >.
Aliased Type§
struct ListNodes<T: Config<I>, I: 'static = ()>(/* private fields */);