pub trait ToCoordinate {
    type Error;

    fn to_coordinate(&self) -> Result<Coordinate<f64>, Self::Error>;
}

Required Associated Types

Required Methods

Implementors