peace_fmt 0.0.15

Presentation and formatting support for the peace automation framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use serde::{Deserialize, Serialize};

/// Level of conceptual detail for a given topic.
#[derive(Clone, Copy, Debug, PartialEq, Eq, Deserialize, Serialize)]
pub enum HeadingLevel {
    /// Top level heading.
    Level1,
    /// Second level heading.
    Level2,
    /// Third level heading.
    Level3,
    /// Fourth level heading.
    Level4,
    /// Fifth level heading.
    Level5,
    /// Lowest level of conceptual detail.
    Level6,
}