pub trait FromStrRadix: Sized {
// Required method
fn from_str_radix(t: &str, radix: u32) -> Result<Self, ParseIntError>;
}
Required Methods§
fn from_str_radix(t: &str, radix: u32) -> Result<Self, ParseIntError>
Object Safety§
This trait is not object safe.