wal_rs/config/
mod.rs

1/// WAL config
2#[derive(Debug, Copy, Clone, Eq, PartialEq)]
3pub struct Config {
4    /// entry limit of a single segment file
5    pub entry_per_segment: usize,
6
7    /// if we should do check_sum
8    pub check_crc32: bool,
9}