docx_reader/documents/elements/
table_layout.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use serde::{Serialize, Serializer};

use crate::types::*;

#[derive(Debug, Clone, PartialEq)]
pub struct TableLayout {
	layout_type: TableLayoutType,
}

impl TableLayout {
	pub fn new(t: TableLayoutType) -> TableLayout {
		TableLayout { layout_type: t }
	}
}

impl Serialize for TableLayout {
	fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
	where
		S: Serializer,
	{
		serializer.serialize_str(&self.layout_type.to_string())
	}
}