use crate::documents::BuildXML;
use crate::xml_builder::*;
use std::io::Write;
use serde::*;
#[derive(Debug, Clone, PartialEq)]
pub struct OutlineLvl {
pub v: usize,
}
impl OutlineLvl {
pub fn new(v: usize) -> OutlineLvl {
assert!(v < 10, "outline level should be less than 10");
OutlineLvl { v }
}
}
impl BuildXML for OutlineLvl {
fn build_to<W: Write>(
&self,
stream: crate::xml::writer::EventWriter<W>,
) -> crate::xml::writer::Result<crate::xml::writer::EventWriter<W>> {
XMLBuilder::from(stream)
.outline_lvl(self.v)?
.into_inner()
}
}
impl Serialize for OutlineLvl {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
serializer.serialize_u32(self.v as u32)
}
}
#[cfg(test)]
mod tests {
use crate::{BuildXML, OutlineLvl};
#[test]
fn test_outline_lvl_build() {
let bytes = OutlineLvl::new(1).build();
assert_eq!(
std::str::from_utf8(&bytes).unwrap(),
r#"<w:outlineLvl w:val="1" />"#
);
}
}