1 2 3 4 5 6 7 8 9 10 11
#![doc = include_str!("../README.md")] pub mod client; mod element; pub mod error; mod metadata; pub mod partition; pub use client::UnstructuredClient; pub use element::ElementList; pub use partition::PartitionParameters;