Trait frame_support::traits::PalletsInfoAccess
source · [−]pub trait PalletsInfoAccess {
fn count() -> usize { ... }
fn accumulate(_accumulator: &mut Vec<PalletInfoData>) { ... }
fn infos() -> Vec<PalletInfoData>ⓘ { ... }
}
Expand description
Provide information about a bunch of pallets.
Provided methods
The number of pallets’ information that this type represents.
You probably don’t want this function but infos()
instead.
fn accumulate(_accumulator: &mut Vec<PalletInfoData>)
fn accumulate(_accumulator: &mut Vec<PalletInfoData>)
Extend the given vector by all of the pallets’ information that this type represents.
You probably don’t want this function but infos()
instead.