pub trait WeightInfo {
// Required methods
fn register_not_full() -> Weight;
fn register_eject() -> Weight;
fn submit_page() -> Weight;
fn unset_page() -> Weight;
fn bail() -> Weight;
fn clear_old_round_data(p: u32) -> Weight;
}Expand description
Weight functions needed for pallet_election_provider_multi_block_signed.
Required Methods§
fn register_not_full() -> Weight
fn register_eject() -> Weight
fn submit_page() -> Weight
fn unset_page() -> Weight
fn bail() -> Weight
fn clear_old_round_data(p: u32) -> Weight
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.