pub trait WeightToFee {
    type Balance: BaseArithmetic + From<u32> + Copy + Unsigned;

    fn weight_to_fee(weight: &Weight) -> Self::Balance;
}
Expand description

A trait that describes the weight to fee calculation.

Required Associated Types§

source

type Balance: BaseArithmetic + From<u32> + Copy + Unsigned

The type that is returned as result from calculation.

Required Methods§

source

fn weight_to_fee(weight: &Weight) -> Self::Balance

Calculates the fee from the passed weight.

Implementors§

source§

impl<T> WeightToFee for IdentityFee<T>where
    T: BaseArithmetic + From<u32> + Copy + Unsigned,

§

type Balance = T

source§

impl<T> WeightToFee for Twhere
    T: WeightToFeePolynomial,

source§

impl<T, M> WeightToFee for ConstantMultiplier<T, M>where
    T: BaseArithmetic + From<u32> + Copy + Unsigned,
    M: Get<T>,

§

type Balance = T