pub trait IntoWeight {
    // Required method
    fn into_weight(self) -> Weight;
}
Expand description

Converts Self into a Weight by using Self for all components.

Required Methods§

source

fn into_weight(self) -> Weight

Implementations on Foreign Types§

source§

impl IntoWeight for u64

source§

fn into_weight(self) -> Weight

Implementors§