pub trait PerThing128: PerThing<Output = u128> + Mul<u128> { }
Expand description

Aggregator trait for a PerThing that can be multiplied by u128 (ExtendedBalance).

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> PerThing128 for T
where T: PerThing<Output = u128> + Mul<u128>,