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.