indexed_struct/
lib.rs

1//! A library for creating structs with automatic indexing capabilities.
2//!
3//! This crate provides a derive macro that generates store structures
4//! with efficient indexing and querying capabilities for struct fields.
5//!
6//! ## Usage
7//!
8//! See [IndexedStruct] derive macro for detailed usage instructions and examples.
9//! Additional usage examples can be found in the `indexed-struct-usage` module tests.
10
11pub use hashbrown::{HashMap, HashSet};
12pub use indexed_struct_core::error::{Error, Result};
13pub use indexed_struct_macros::IndexedStruct;