pub trait ResultPoint { // Required methods fn getX(&self) -> f32; fn getY(&self) -> f32; fn to_rxing_result_point(&self) -> Point; }
This impl is temporary and is there to ease refactoring.