Parse

Trait Parse 

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

Required Methods§

Source

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

Source

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

Implementors§