docx-reader 0.1.1

A .docx file reader in rust
Documentation
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())
	}
}