(s: &str)
| 135 | } |
| 136 | |
| 137 | fn parse_point(s: &str) -> Option<Geometry> { |
| 138 | let inner = strip_parens(s)?; |
| 139 | let coord = parse_coord(inner)?; |
| 140 | Some(Geometry::Point { coordinates: coord }) |
| 141 | } |
| 142 | |
| 143 | fn parse_linestring(s: &str) -> Option<Geometry> { |
| 144 | let inner = strip_parens(s)?; |
no test coverage detected