referrerpolicy=no-referrer-when-downgrade
frame_support::traits

Trait ValidatorSetWithIdentification

Source
pub trait ValidatorSetWithIdentification<AccountId>: ValidatorSet<AccountId> {
    type Identification: Parameter;
    type IdentificationOf: Convert<Self::ValidatorId, Option<Self::Identification>>;
}
Expand description

ValidatorSet combined with an identification.

Required Associated Types§

Source

type Identification: Parameter

Full identification of ValidatorId.

Source

type IdentificationOf: Convert<Self::ValidatorId, Option<Self::Identification>>

A type for converting ValidatorId to Identification.

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.

Implementors§

impl<T: Config> ValidatorSetWithIdentification<<T as Config>::AccountId> for Pallet<T>