Trait frame_support::traits::PalletInfo
source · pub trait PalletInfo {
// Required methods
fn index<P: 'static>() -> Option<usize>;
fn name<P: 'static>() -> Option<&'static str>;
fn module_name<P: 'static>() -> Option<&'static str>;
fn crate_version<P: 'static>() -> Option<CrateVersion>;
}Expand description
Provides information about the pallet itself and its setup in the runtime.
An implementor should be able to provide information about each pallet that
is configured in construct_runtime!.
Required Methods§
sourcefn index<P: 'static>() -> Option<usize>
fn index<P: 'static>() -> Option<usize>
Convert the given pallet P into its index as configured in the runtime.
sourcefn name<P: 'static>() -> Option<&'static str>
fn name<P: 'static>() -> Option<&'static str>
Convert the given pallet P into its name as configured in the runtime.
sourcefn module_name<P: 'static>() -> Option<&'static str>
fn module_name<P: 'static>() -> Option<&'static str>
Convert the given pallet P into its Rust module name as used in construct_runtime!.
sourcefn crate_version<P: 'static>() -> Option<CrateVersion>
fn crate_version<P: 'static>() -> Option<CrateVersion>
Convert the given pallet P into its containing crate version.