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

pub trait FromStrRadix {
    type Err;

    fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::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::Err>

Implementors