1
2
3
4
5
6
7
8
pub use Geometry;

use types::CoordinateType;

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