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§
Sourcetype Identification: Parameter
type Identification: Parameter
Full identification of ValidatorId
.
Sourcetype 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.