1 2 3 4 5 6 7
//! //! Storage types that implement the [crate::graph::Graph] trait. //! /// A storage type that employs the chunked fixed-size ringbuffer strategy pub mod chunked_storage; pub use chunked_storage::ChunkedGraph;