use hard_xml::{XmlRead, XmlWrite};
use crate::{__string_enum, __xml_test_suites};
#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "w:fldChar")]
pub struct FieldChar {
#[xml(attr = "w:fldCharType")]
pub ty: Option<CharType>,
}
impl<T: Into<Option<CharType>>> From<T> for FieldChar {
fn from(val: T) -> Self {
FieldChar { ty: val.into() }
}
}
#[derive(Debug, Clone)]
#[cfg_attr(test, derive(PartialEq))]
pub enum CharType {
Begin,
Separate,
End,
}
__string_enum! {
CharType {
Begin = "begin",
Separate = "separate",
End = "end",
}
}
__xml_test_suites!(
FieldChar,
FieldChar::from(CharType::Begin),
r#"<w:fldChar w:fldCharType="begin"/>"#,
);