openraft 0.10.0-alpha.18

Advanced Raft consensus
Documentation
1
2
3
4
5
6
7
8
//! A container that stores elements efficiently by avoiding heap allocation for single elements.

mod batch_trait;
pub mod inline_batch;

#[allow(unused)]
pub use batch_trait::Batch;
pub use inline_batch::InlineBatch;