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
impl FromStrRadixHelper for i8
impl FromStrRadixHelper for i16
impl FromStrRadixHelper for i32
impl FromStrRadixHelper for i64
impl FromStrRadixHelper for isize
impl FromStrRadixHelper for u8
impl FromStrRadixHelper for u16
impl FromStrRadixHelper for u32
impl FromStrRadixHelper for u64
impl FromStrRadixHelper for usize