docx_rust/formatting/
line_rule.rs1use crate::__string_enum;
2
3#[derive(Debug, Clone)]
4#[cfg_attr(test, derive(PartialEq))]
5pub enum LineRule {
6 Auto,
7 Exact,
8 AtLeast,
9}
10
11__string_enum! {
12 LineRule {
13 Auto = "auto",
14 Exact = "exact",
15 AtLeast = "atLeast",
16 }
17}