Trait ValidatorSetWithIdentification
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§
type Identification: Parameter
type Identification: Parameter
Full identification of ValidatorId.
type IdentificationOf: Convert<Self::ValidatorId, Option<Self::Identification>>
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.