pub struct GeometryStats {
pub computed_extent: Option<[f64; 4]>,
pub kinds: BTreeMap<String, u64>,
pub null_count: u64,
}Fields§
§computed_extent: Option<[f64; 4]>[xmin, ymin, xmax, ymax] — present iff at least one geometry had a
computable bbox.
kinds: BTreeMap<String, u64>Histogram of Geometry variant → count. Useful for catching mixed
FeatureCollections where the schema says “Point” but reality says
“Point + MultiPoint mixed”.
null_count: u64Count of features whose geometry was None.
Trait Implementations§
Source§impl Debug for GeometryStats
impl Debug for GeometryStats
Auto Trait Implementations§
impl Freeze for GeometryStats
impl RefUnwindSafe for GeometryStats
impl Send for GeometryStats
impl Sync for GeometryStats
impl Unpin for GeometryStats
impl UnsafeUnpin for GeometryStats
impl UnwindSafe for GeometryStats
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more