1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
use strong_xml::{XmlRead, XmlWrite};

use crate::__xml_test_suites;

/// Outline
///
/// ```rust
/// use docx_rust::formatting::*;
///
/// let outline = Outline::from(false);
/// let outline = Outline::from(true);
/// ```
#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "w:outline")]
pub struct Outline {
    #[xml(attr = "w:val")]
    pub value: Option<bool>,
}

impl<T: Into<Option<bool>>> From<T> for Outline {
    fn from(val: T) -> Self {
        Outline { value: val.into() }
    }
}

__xml_test_suites!(
    Outline,
    Outline::default(),
    r#"<w:outline/>"#,
    Outline::from(false),
    r#"<w:outline w:val="false"/>"#,
    Outline::from(true),
    r#"<w:outline w:val="true"/>"#,
);