Trait pallet_identity::weights::WeightInfo[][src]

pub trait WeightInfo {
Show 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

Implementors