referrerpolicy=no-referrer-when-downgrade
frame_support::traits

Trait Instance

Source
pub trait Instance: 'static {
    const PREFIX: &'static str;
    const INDEX: u8;
}
Expand description

An instance of a pallet in the storage.

It is required that these instances are unique, to support multiple instances per pallet in the same runtime!

E.g. for module MyModule default instance will have prefix “MyModule” and other instances “InstanceNMyModule”.

Required Associated Constants§

Source

const PREFIX: &'static str

Unique module prefix. E.g. “InstanceNMyModule” or “MyModule”

Source

const INDEX: u8

Unique numerical identifier for an instance.

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.

Implementations on Foreign Types§

Source§

impl Instance for ()

Source§

const PREFIX: &'static str = ""

Source§

const INDEX: u8 = 0u8

Implementors§