Trait core::num::FromStrRadixHelper
source · trait FromStrRadixHelper: PartialOrd + Copy + Add<Output = Self> + Sub<Output = Self> + Mul<Output = Self> {
const MIN: Self;
// Required methods
fn from_u32(u: u32) -> Self;
fn checked_mul(&self, other: u32) -> Option<Self>;
fn checked_sub(&self, other: u32) -> Option<Self>;
fn checked_add(&self, other: u32) -> Option<Self>;
}