pub trait ParseU<T> {
// Required methods
fn parse(t: Type, prec: u32, s: T) -> Option<Self>
where Self: Sized;
fn parse_radix(t: Type, prec: u32, s: T, base: i32) -> Option<Self>
where Self: Sized;
}
pub trait ParseU<T> {
// Required methods
fn parse(t: Type, prec: u32, s: T) -> Option<Self>
where Self: Sized;
fn parse_radix(t: Type, prec: u32, s: T, base: i32) -> Option<Self>
where Self: Sized;
}