pub trait DecimalCheckedOps {
    // Required methods
    fn checked_add(self, other: Decimal) -> Result<Decimal, OverflowError>;
    fn checked_mul_uint128(
        self,
        other: Uint128
    ) -> Result<Uint128, OverflowError>;
}

Required Methods§

Implementations on Foreign Types§

source§

impl DecimalCheckedOps for Decimal

Implementors§