pub trait WeightInfo {
    // Required methods
    fn remark(b: u32) -> Weight;
    fn remark_with_event(b: u32) -> Weight;
    fn set_heap_pages() -> Weight;
    fn set_storage(i: u32) -> Weight;
    fn kill_storage(i: u32) -> Weight;
    fn kill_prefix(p: u32) -> Weight;
}
Expand description

Weight functions needed for frame_system.

Required Methods§

Implementations on Foreign Types§

source§

impl WeightInfo for ()

source§

fn remark(b: u32) -> Weight

The range of component b is [0, 3932160].

source§

fn remark_with_event(b: u32) -> Weight

The range of component b is [0, 3932160].

source§

fn set_storage(i: u32) -> Weight

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

source§

fn kill_storage(i: u32) -> Weight

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

source§

fn kill_prefix(p: u32) -> Weight

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

source§

fn set_heap_pages() -> Weight

Implementors§