pub type PermissionsByParticipants<T: Config> = StorageMap<_GeneratedPrefixForStoragePermissionsByParticipants<T>, Identity, (T::AccountId, T::AccountId), BoundedBTreeSet<PermissionId, T::MaxRecipientsPerPermission>, ValueQuery>;
Expand description
Mapping from (delegator, recipient) to permission IDs
Storage type is [StorageMap
] with key type (T :: AccountId, T :: AccountId)
and value type BoundedBTreeSet < PermissionId, T :: MaxRecipientsPerPermission >
.
Aliased Typeยง
struct PermissionsByParticipants<T: Config>(/* private fields */);