Trait pallet_utility::pallet::Config[][src]

pub trait Config: Config {
    type Event: From<Event> + IsType<<Self as Config>::Event>;
    type Call: Parameter + Dispatchable<Origin = Self::Origin, PostInfo = PostDispatchInfo> + GetDispatchInfo + From<Call<Self>> + UnfilteredDispatchable<Origin = Self::Origin> + IsSubType<Call<Self>> + IsType<<Self as Config>::Call>;
    type WeightInfo: WeightInfo;
}
Expand description

Configuration trait.

Associated Types

The overarching event type.

The overarching call type.

Weight information for extrinsics in this pallet.

Implementors