geoarrow_array/
lib.rs

1#![doc = include_str!("../README.md")]
2#![warn(missing_docs)]
3#![cfg_attr(docsrs, feature(doc_auto_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;
20
21pub use trait_::{
22    GeoArrowArray, GeoArrowArrayAccessor, GeoArrowArrayIterator, GeoArrowArrayReader, IntoArrow,
23};
24
25#[cfg(any(test, feature = "test-data"))]
26#[allow(missing_docs)]
27pub mod test;