Trait StorageKey

Source
pub trait StorageKey {
    const KEY: Key;

    // Provided method
    fn key(&self) -> Key { ... }
}
Expand description

Holds storage key for the type.

§Note

The trait is automatically implemented for Packed types via blanket implementation.

Required Associated Constants§

Source

const KEY: Key

Storage key of the type.

Provided Methods§

Source

fn key(&self) -> Key

Returns the storage key.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl StorageKey for AutoKey

Source§

const KEY: Key = 0u32

Source§

impl<L, R> StorageKey for ResolverKey<L, R>
where L: StorageKey + KeyType, R: StorageKey + KeyType,

Source§

impl<P> StorageKey for P
where P: Packed,

Source§

const KEY: Key = 0u32

Source§

impl<const KEY: Key, ParentKey: StorageKey> StorageKey for ManualKey<KEY, ParentKey>