openraft 0.10.0-alpha.18

Advanced Raft consensus
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// Display mode for [`RuntimeStatsDisplay`](super::RuntimeStatsDisplay).
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub enum DisplayMode {
    /// Compact single-line format (default).
    #[default]
    Compact,
    /// Multiline format with one piece of information per line.
    Multiline,
    /// Human-readable format with better formatting and spacing.
    HumanReadable,
}