Trait core::num::FromStrRadixHelper [] [src]

trait FromStrRadixHelper: PartialOrd + Copy {
    fn min_value() -> Self;
    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 Methods

fn min_value() -> Self

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>

Implementors