pub trait PalletsInfoAccess {
    fn count() -> usize { ... }
fn accumulate(_accumulator: &mut Vec<PalletInfoData>) { ... }
fn infos() -> Vec<PalletInfoData>
Notable traits for Vec<u8, A>
impl<A> Write for Vec<u8, A> where
    A: Allocator
{ ... } }
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.

Extend the given vector by all of the pallets’ information that this type represents.

You probably don’t want this function but infos() instead.

All of the pallets’ information that this type represents.

Implementations on Foreign Types

Implementors