ParseU

Trait ParseU 

Source
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;
}

Required Methods§

Source

fn parse(t: Type, prec: u32, s: T) -> Option<Self>
where Self: Sized,

Source

fn parse_radix(t: Type, prec: u32, s: T, base: i32) -> Option<Self>
where Self: Sized,

Implementors§