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

48 lines
900 B
Rust
Raw Normal View History

2022-05-19 10:35:29 +03:00
use serde::{Serialize, Serializer};
2019-11-06 12:17:49 +02:00
use crate::documents::BuildXML;
use crate::xml_builder::*;
2022-05-19 10:35:29 +03:00
#[derive(Debug, Clone, PartialEq)]
2019-11-06 12:17:49 +02:00
pub struct Next {
val: String,
}
impl Next {
pub fn new(val: impl Into<String>) -> Next {
Next { val: val.into() }
}
}
2022-05-19 10:35:29 +03:00
impl Serialize for Next {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
serializer.serialize_str(&self.val)
}
}
2019-11-06 12:17:49 +02:00
impl BuildXML for Next {
fn build(&self) -> Vec<u8> {
let b = XMLBuilder::new();
b.next(&self.val).build()
}
}
#[cfg(test)]
mod tests {
use super::*;
#[cfg(test)]
use pretty_assertions::assert_eq;
use std::str;
#[test]
fn test_next() {
let c = Next::new("Normal");
let b = c.build();
assert_eq!(str::from_utf8(&b).unwrap(), r#"<w:next w:val="Normal" />"#);
}
}