Trait litcheck_core::range::NumericRangeBound
source · pub trait NumericRangeBound: Add<Output = Self> + AddAssign + Sub<Output = Self> + Copy + PartialEq + Ord {
const ZERO: Self;
const ONE: Self;
// Required method
fn saturating_sub(self, rhs: Self) -> Self;
}
Required Associated Constants§
Required Methods§
fn saturating_sub(self, rhs: Self) -> Self
Object Safety§
This trait is not object safe.