docx_reader/documents/elements/
outline_lvl.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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)
	}
}