pub trait PalletInfoAccess {
// Required methods
fn index() -> usize;
fn name() -> &'static str;
fn name_hash() -> [u8; 16];
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§
Sourcefn module_name() -> &'static str
fn module_name() -> &'static str
Name of the Rust module containing the pallet.
Sourcefn crate_version() -> CrateVersion
fn crate_version() -> CrateVersion
Version of the crate containing the pallet.
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.