geoengine-api-client 0.0.33

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--- rust/src/models/spatial_partition2_d.rs
+++ rust/src/models/spatial_partition2_d.rs
@@ -30,3 +30,4 @@
     }
 }
 
+impl std::fmt::Display for SpatialPartition2D {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(
            f,
            "{xmin},{ymin},{xmax},{ymax}",
            xmin = self.upper_left_coordinate.x,
            ymin = self.lower_right_coordinate.y,
            xmax = self.lower_right_coordinate.x,
            ymax = self.upper_left_coordinate.y
        )
    }
}