pub trait BalanceToFixedPoint<FixedPoint> {
    // Required method
    fn to_fixed(self) -> Option<FixedPoint>;
}

Required Methods§

source

fn to_fixed(self) -> Option<FixedPoint>

Implementors§