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>;
}

Required Associated Constants§

source

const MIN: Self

Required Methods§

source

fn from_u32(u: u32) -> Self

source

fn checked_mul(&self, other: u32) -> Option<Self>

source

fn checked_sub(&self, other: u32) -> Option<Self>

source

fn checked_add(&self, other: u32) -> Option<Self>

Implementors§