pub trait CostOverflowingMath<T> {
    fn cost_overflow_mul(self, other: T) -> Result<T, CostErrors>;
fn cost_overflow_add(self, other: T) -> Result<T, CostErrors>;
fn cost_overflow_sub(self, other: T) -> Result<T, CostErrors>; }

Required methods

Implementations on Foreign Types

Implementors