1
2
3
4
5
6
7
pub use Geometry;

use CoordinateType;

pub trait ToGeo<T: CoordinateType> {
    fn to_geo(&self) -> Geometry<T>;
}