docx-rs/docx-core/src/documents/elements/numbering_property.rs

61 lines
1.4 KiB
Rust
Raw Normal View History

use serde::ser::{SerializeStruct, Serializer};
use serde::Serialize;
2019-12-06 12:18:48 +02:00
use super::{IndentLevel, NumberingId};
use crate::documents::BuildXML;
use crate::xml_builder::*;
#[derive(Debug, Clone, PartialEq)]
2019-12-06 19:15:21 +02:00
pub struct NumberingProperty {
pub id: NumberingId,
pub level: IndentLevel,
2019-12-06 12:18:48 +02:00
}
2019-12-06 19:15:21 +02:00
impl NumberingProperty {
pub fn new(id: NumberingId, level: IndentLevel) -> NumberingProperty {
2019-12-06 12:18:48 +02:00
Self { id, level }
}
}
2019-12-06 19:15:21 +02:00
impl BuildXML for NumberingProperty {
2019-12-06 12:18:48 +02:00
fn build(&self) -> Vec<u8> {
let b = XMLBuilder::new();
b.open_numbering_property()
.add_child(&self.id)
.add_child(&self.level)
.close()
.build()
}
}
impl Serialize for NumberingProperty {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
let mut t = serializer.serialize_struct("NumberProperty", 2)?;
t.serialize_field("id", &self.id.id)?;
t.serialize_field("level", &self.level.val)?;
t.end()
}
}
2019-12-06 12:18:48 +02:00
#[cfg(test)]
mod tests {
use super::*;
#[cfg(test)]
use pretty_assertions::assert_eq;
use std::str;
#[test]
fn test_num_property() {
2019-12-06 19:15:21 +02:00
let c = NumberingProperty::new(NumberingId::new(0), IndentLevel::new(3));
2019-12-06 12:18:48 +02:00
let b = c.build();
assert_eq!(
str::from_utf8(&b).unwrap(),
2019-12-06 19:15:21 +02:00
r#"<w:numPr><w:numId w:val="0" /><w:ilvl w:val="3" /></w:numPr>"#
2019-12-06 12:18:48 +02:00
);
}
}