Trait num_traits::Num
[−]
[src]
pub trait Num: PartialEq + Zero + One + NumOps {
type FromStrRadixErr;
fn from_str_radix(
str: &str,
radix: u32
) -> Result<Self, Self::FromStrRadixErr>;
}The base trait for numeric types, covering 0 and 1 values,
comparisons, basic numeric operations, and string conversion.
Associated Types
type FromStrRadixErr
Required Methods
fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>
Convert from a string and radix <= 36.
Examples
use num_traits::Num; let result = <i32 as Num>::from_str_radix("27", 10); assert_eq!(result, Ok(27)); let result = <i32 as Num>::from_str_radix("foo", 10); assert!(result.is_err());
Implementations on Foreign Types
impl Num for usize[src]
type FromStrRadixErr = ParseIntError
fn from_str_radix(s: &str, radix: u32) -> Result<Self, ParseIntError>[src]
impl Num for u8[src]
type FromStrRadixErr = ParseIntError
fn from_str_radix(s: &str, radix: u32) -> Result<Self, ParseIntError>[src]
impl Num for u16[src]
type FromStrRadixErr = ParseIntError
fn from_str_radix(s: &str, radix: u32) -> Result<Self, ParseIntError>[src]
impl Num for u32[src]
type FromStrRadixErr = ParseIntError
fn from_str_radix(s: &str, radix: u32) -> Result<Self, ParseIntError>[src]
impl Num for u64[src]
type FromStrRadixErr = ParseIntError
fn from_str_radix(s: &str, radix: u32) -> Result<Self, ParseIntError>[src]
impl Num for isize[src]
type FromStrRadixErr = ParseIntError
fn from_str_radix(s: &str, radix: u32) -> Result<Self, ParseIntError>[src]
impl Num for i8[src]
type FromStrRadixErr = ParseIntError
fn from_str_radix(s: &str, radix: u32) -> Result<Self, ParseIntError>[src]
impl Num for i16[src]
type FromStrRadixErr = ParseIntError
fn from_str_radix(s: &str, radix: u32) -> Result<Self, ParseIntError>[src]
impl Num for i32[src]
type FromStrRadixErr = ParseIntError
fn from_str_radix(s: &str, radix: u32) -> Result<Self, ParseIntError>[src]
impl Num for i64[src]
type FromStrRadixErr = ParseIntError
fn from_str_radix(s: &str, radix: u32) -> Result<Self, ParseIntError>[src]
impl<T: Num> Num for Wrapping<T> where
Wrapping<T>: Add<Output = Wrapping<T>> + Sub<Output = Wrapping<T>> + Mul<Output = Wrapping<T>> + Div<Output = Wrapping<T>> + Rem<Output = Wrapping<T>>, [src]
Wrapping<T>: Add<Output = Wrapping<T>> + Sub<Output = Wrapping<T>> + Mul<Output = Wrapping<T>> + Div<Output = Wrapping<T>> + Rem<Output = Wrapping<T>>,