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 VertAlign {
	val: VertAlignType,
}

impl VertAlign {
	pub fn new(val: VertAlignType) -> VertAlign {
		Self { val }
	}
}

impl Serialize for VertAlign {
	fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
	where
		S: Serializer,
	{
		serializer.serialize_str(&format!("{}", &self.val))
	}
}