pub trait WeightInfo {
    // Required methods
    fn add_cert() -> Weight;
    fn renew_cert() -> Weight;
    fn del_cert() -> Weight;
    fn remove_all_certs_received_by(i: u32) -> Weight;
    fn on_initialize() -> Weight;
    fn do_remove_cert_noop() -> Weight;
    fn do_remove_cert() -> Weight;
}
Expand description

Weight functions needed for pallet_universal_dividend.

Required Methods§

source

fn add_cert() -> Weight

source

fn renew_cert() -> Weight

source

fn del_cert() -> Weight

source

fn remove_all_certs_received_by(i: u32) -> Weight

source

fn on_initialize() -> Weight

source

fn do_remove_cert_noop() -> Weight

source

fn do_remove_cert() -> Weight

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl WeightInfo for ()

source§

fn remove_all_certs_received_by(i: u32) -> Weight

The range of component i is [2, 1000].

source§

fn add_cert() -> Weight

source§

fn renew_cert() -> Weight

source§

fn del_cert() -> Weight

source§

fn on_initialize() -> Weight

source§

fn do_remove_cert_noop() -> Weight

source§

fn do_remove_cert() -> Weight

Implementors§