pub trait StorableHint<Key: StorageKey> {
    type Type: Storable;
    type PreferredKey: StorageKey;
}Expand description
Required Associated Types§
Sourcetype PreferredKey: StorageKey
 
type PreferredKey: StorageKey
The storage key that the type prefers. It can be overwritten by an auto-generated storage key.