docx 1.1.2

A Rust library for parsing and generating docx files.
use strong_xml::{XmlRead, XmlWrite};

use crate::__xml_test_suites;

/// Bold
///
/// ```rust
/// use docx::formatting::*;
///
/// let bold = Bold::from(false);
/// let bold = Bold::from(true);
/// ```
#[derive(Debug, Default, XmlRead, XmlWrite)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "w:b")]
pub struct Bold {
    #[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"/>"#,
);