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

45 lines
922 B
Rust
Raw Normal View History

use serde::Serialize;
2019-11-12 10:32:50 +02:00
use crate::documents::BuildXML;
use crate::types::*;
use crate::xml_builder::*;
#[derive(Debug, Clone, PartialEq, Serialize)]
#[serde(rename_all = "camelCase")]
2019-11-12 10:32:50 +02:00
pub struct TableWidth {
width: usize,
width_type: WidthType,
}
impl TableWidth {
pub fn new(width: usize, width_type: WidthType) -> TableWidth {
TableWidth { width, width_type }
}
}
impl BuildXML for TableWidth {
fn build(&self) -> Vec<u8> {
XMLBuilder::new()
.table_width(self.width as i32, WidthType::Dxa)
2019-11-12 10:32:50 +02:00
.build()
}
}
#[cfg(test)]
mod tests {
use super::*;
#[cfg(test)]
use pretty_assertions::assert_eq;
use std::str;
#[test]
fn test_table_width() {
let b = TableWidth::new(20, WidthType::Dxa).build();
2019-11-12 10:32:50 +02:00
assert_eq!(
str::from_utf8(&b).unwrap(),
r#"<w:tblW w:w="20" w:type="dxa" />"#
);
}
}