pub trait PalletsInfoAccess {
// Required method
fn infos() -> Vec<PalletInfoData>;
// Provided method
fn count() -> usize { ... }
}
Expand description
Provide information about a bunch of pallets.
Required Methods§
fn infos() -> Vec<PalletInfoData>
fn infos() -> Vec<PalletInfoData>
All of the pallets’ information that this type represents.
Provided Methods§
Object Safety§
This trait is not object safe.