pub trait PalletInfoAccess {
    fn index() -> usize;
fn name() -> &'static str;
fn module_name() -> &'static str;
fn crate_version() -> CrateVersion; }
Expand description

Provides information about the pallet itself and its setup in the runtime.

Declare some information and access the information provided by PalletInfo for a specific pallet.

Required methods

Index of the pallet as configured in the runtime.

Name of the pallet as configured in the runtime.

Name of the Rust module containing the pallet.

Version of the crate containing the pallet.

Implementors