pub trait WeightInfo {
    // Required methods
    fn proxy(p: u32) -> Weight;
    fn proxy_announced(a: u32, p: u32) -> Weight;
    fn remove_announcement(a: u32, p: u32) -> Weight;
    fn reject_announcement(a: u32, p: u32) -> Weight;
    fn announce(a: u32, p: u32) -> Weight;
    fn add_proxy(p: u32) -> Weight;
    fn remove_proxy(p: u32) -> Weight;
    fn remove_proxies(p: u32) -> Weight;
    fn create_pure(p: u32) -> Weight;
    fn kill_pure(p: u32) -> Weight;
}
Expand description

Weight functions needed for pallet_proxy.

Required Methods§

Implementations on Foreign Types§

source§

impl WeightInfo for ()

source§

fn proxy(p: u32) -> Weight

The range of component p is [1, 31].

source§

fn proxy_announced(a: u32, p: u32) -> Weight

The range of component a is [0, 31]. The range of component p is [1, 31].

source§

fn remove_announcement(a: u32, p: u32) -> Weight

The range of component a is [0, 31]. The range of component p is [1, 31].

source§

fn reject_announcement(a: u32, p: u32) -> Weight

The range of component a is [0, 31]. The range of component p is [1, 31].

source§

fn announce(a: u32, p: u32) -> Weight

The range of component a is [0, 31]. The range of component p is [1, 31].

source§

fn add_proxy(p: u32) -> Weight

The range of component p is [1, 31].

source§

fn remove_proxy(p: u32) -> Weight

The range of component p is [1, 31].

source§

fn remove_proxies(p: u32) -> Weight

The range of component p is [1, 31].

source§

fn create_pure(p: u32) -> Weight

The range of component p is [1, 31].

source§

fn kill_pure(p: u32) -> Weight

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

Implementors§