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§
Sourcefn infos() -> Vec<PalletInfoData>
fn infos() -> Vec<PalletInfoData>
All of the pallets’ information that this type represents.
Provided Methods§
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.