Trait Parseable

Source
pub trait Parseable {
    // Required method
    fn parse(string: &str, tolerance: f32) -> Result<Self>
       where Self: Sized;
}

Required Methods§

Source

fn parse(string: &str, tolerance: f32) -> Result<Self>
where Self: Sized,

Implementors§