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
36
37
38
39
40
41
42
43
use strong_xml::{XmlRead, XmlWrite};

use crate::__xml_test_suites;

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

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "w:bCs")]
pub struct BoldComplex {
    #[xml(attr = "w:val")]
    pub value: Option<bool>,
}

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

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