pub trait WeightInfo {
Show 16 methods // Required methods fn add_registrar(r: u32) -> Weight; fn set_identity(r: u32, x: u32) -> Weight; fn set_subs_new(s: u32) -> Weight; fn set_subs_old(p: u32) -> Weight; fn clear_identity(r: u32, s: u32, x: u32) -> Weight; fn request_judgement(r: u32, x: u32) -> Weight; fn cancel_request(r: u32, x: u32) -> Weight; fn set_fee(r: u32) -> Weight; fn set_account_id(r: u32) -> Weight; fn set_fields(r: u32) -> Weight; fn provide_judgement(r: u32, x: u32) -> Weight; fn kill_identity(r: u32, s: u32, x: u32) -> Weight; fn add_sub(s: u32) -> Weight; fn rename_sub(s: u32) -> Weight; fn remove_sub(s: u32) -> Weight; fn quit_sub(s: u32) -> Weight;
}
Expand description

Weight functions needed for pallet_identity.

Required Methods§

Implementations on Foreign Types§

source§

impl WeightInfo for ()

source§

fn add_registrar(r: u32) -> Weight

The range of component r is [1, 19].

source§

fn set_identity(r: u32, x: u32) -> Weight

The range of component r is [1, 20]. The range of component x is [0, 100].

source§

fn set_subs_new(s: u32) -> Weight

The range of component s is [0, 100].

source§

fn set_subs_old(p: u32) -> Weight

The range of component p is [0, 100].

source§

fn clear_identity(r: u32, s: u32, x: u32) -> Weight

The range of component r is [1, 20]. The range of component s is [0, 100]. The range of component x is [0, 100].

source§

fn request_judgement(r: u32, x: u32) -> Weight

The range of component r is [1, 20]. The range of component x is [0, 100].

source§

fn cancel_request(r: u32, x: u32) -> Weight

The range of component r is [1, 20]. The range of component x is [0, 100].

source§

fn set_fee(r: u32) -> Weight

The range of component r is [1, 19].

source§

fn set_account_id(r: u32) -> Weight

The range of component r is [1, 19].

source§

fn set_fields(r: u32) -> Weight

The range of component r is [1, 19].

source§

fn provide_judgement(r: u32, x: u32) -> Weight

The range of component r is [1, 19]. The range of component x is [0, 100].

source§

fn kill_identity(r: u32, s: u32, x: u32) -> Weight

The range of component r is [1, 20]. The range of component s is [0, 100]. The range of component x is [0, 100].

source§

fn add_sub(s: u32) -> Weight

The range of component s is [0, 99].

source§

fn rename_sub(s: u32) -> Weight

The range of component s is [1, 100].

source§

fn remove_sub(s: u32) -> Weight

The range of component s is [1, 100].

source§

fn quit_sub(s: u32) -> Weight

The range of component s is [0, 99].

Implementors§