pub trait PalletInfoAccess {
    // Required methods
    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§

source

fn index() -> usize

Index of the pallet as configured in the runtime.

source

fn name() -> &'static str

Name of the pallet as configured in the runtime.

source

fn module_name() -> &'static str

Name of the Rust module containing the pallet.

source

fn crate_version() -> CrateVersion

Version of the crate containing the pallet.

Implementors§