pub trait WeightInfo {
    // Required methods
    fn feed_values(c: u32) -> Weight;
    fn on_finalize() -> Weight;
}
Expand description

Weight functions needed for orml_oracle.

Required Methods§

source

fn feed_values(c: u32) -> Weight

source

fn on_finalize() -> Weight

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl WeightInfo for ()

Default weights.

source§

fn feed_values(c: u32) -> Weight

source§

fn on_finalize() -> Weight

Implementors§