docx-reader 0.1.1

A .docx file reader in rust
Documentation
use serde::*;

#[derive(Debug, Clone, PartialEq)]
pub struct OutlineLvl {
	pub v: usize,
}

impl OutlineLvl {
	pub fn new(v: usize) -> OutlineLvl {
		assert!(v < 10, "outline level should be less than 10");
		OutlineLvl { v }
	}
}

impl Serialize for OutlineLvl {
	fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
	where
		S: Serializer,
	{
		serializer.serialize_u32(self.v as u32)
	}
}