pub struct OnChainExecution<T: Config>(_);
Expand description
A simple on-chain implementation of the election provider trait.
This implements both ElectionProvider
and InstantElectionProvider
.
This type has some utilities to make it safe. Nonetheless, it should be used with utmost care. A
thoughtful value must be set as Config::Bounds
to ensure the size of the input is sensible.
Trait Implementations§
source§impl<T: Config> ElectionProvider for OnChainExecution<T>
impl<T: Config> ElectionProvider for OnChainExecution<T>
source§impl<T: Config> ElectionProviderBase for OnChainExecution<T>
impl<T: Config> ElectionProviderBase for OnChainExecution<T>
§type BlockNumber = <<<<T as Config>::System as Config>::Block as HeaderProvider>::HeaderT as Header>::Number
type BlockNumber = <<<<T as Config>::System as Config>::Block as HeaderProvider>::HeaderT as Header>::Number
The block number type.
§type MaxWinners = <T as Config>::MaxWinners
type MaxWinners = <T as Config>::MaxWinners
The upper bound on election winners that can be returned. Read more
§type DataProvider = <T as Config>::DataProvider
type DataProvider = <T as Config>::DataProvider
The data provider of the election.
source§fn desired_targets_checked() -> Result<u32>
fn desired_targets_checked() -> Result<u32>
checked call to
Self::DataProvider::desired_targets()
ensuring the value never exceeds
Self::MaxWinners
.source§impl<T: Config> InstantElectionProvider for OnChainExecution<T>
impl<T: Config> InstantElectionProvider for OnChainExecution<T>
fn instant_elect( forced_input_voters_bounds: DataProviderBounds, forced_input_targets_bounds: DataProviderBounds ) -> Result<BoundedSupportsOf<Self>, Self::Error>
Auto Trait Implementations§
impl<T> RefUnwindSafe for OnChainExecution<T>where T: RefUnwindSafe,
impl<T> Send for OnChainExecution<T>where T: Send,
impl<T> Sync for OnChainExecution<T>where T: Sync,
impl<T> Unpin for OnChainExecution<T>where T: Unpin,
impl<T> UnwindSafe for OnChainExecution<T>where T: UnwindSafe,
Blanket Implementations§
source§impl<T> CheckedConversion for T
impl<T> CheckedConversion for T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T, Outer> IsWrappedBy<Outer> for Twhere
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>,
impl<T, Outer> IsWrappedBy<Outer> for Twhere Outer: AsRef<T> + AsMut<T> + From<T>, T: From<Outer>,
§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
source§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere Self: UniqueSaturatedFrom<T>,
source§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere Self: UniqueSaturatedInto<T>,
Consume self to return an equivalent value of
T
. Read moresource§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere T: UncheckedFrom<S>,
source§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
The counterpart to
unchecked_from
.source§impl<T, S> UniqueSaturatedInto<T> for Swhere
T: Bounded,
S: TryInto<T>,
impl<T, S> UniqueSaturatedInto<T> for Swhere T: Bounded, S: TryInto<T>,
source§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
Consume self to return an equivalent value of
T
.