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