geoarrow_array/
lib.rs

1#![doc = include_str!("../README.md")]
2#![warn(missing_docs)]
3#![cfg_attr(docsrs, feature(doc_cfg))]
4#![cfg_attr(not(test), deny(unused_crate_dependencies))]
5#![doc(
6    html_logo_url = "https://github.com/geoarrow.png",
7    html_favicon_url = "https://github.com/geoarrow.png?size=32"
8)]
9
10pub mod array;
11pub mod builder;
12pub mod capacity;
13pub mod cast;
14mod eq;
15#[cfg(feature = "geozero")]
16pub mod geozero;
17pub mod scalar;
18mod trait_;
19pub(crate) mod util;
20mod wrap_array;
21
22pub use trait_::{
23    GeoArrowArray, GeoArrowArrayAccessor, GeoArrowArrayIterator, GeoArrowArrayReader, IntoArrow,
24};
25pub use wrap_array::WrapArray;
26
27#[cfg(any(test, feature = "test-data"))]
28#[allow(missing_docs)]
29pub mod test;