Trait std::num::FromStrRadixUnstable [-] [+] [src]

pub trait FromStrRadix where <Self as FromStrRadix>::Err: Sized {
    type Err;

    fn from_str_radix(str: &str, radix: u32) -> Result<Self, <Self as FromStrRadix>::Err>;
}

A generic trait for converting a string with a radix (base) to a value

Associated Types

type Err

Required Methods

fn from_str_radix(str: &str, radix: u32) -> Result<Self, <Self as FromStrRadix>::Err>

Implementors