docx-reader 0.1.1

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

use serde::Serialize;

#[derive(Debug, Clone, PartialEq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct Section {
	property: SectionProperty,
}

impl Section {
	pub fn new() -> Section {
		Default::default()
	}
}

impl Default for Section {
	fn default() -> Self {
		Self {
			property: SectionProperty::new(),
		}
	}
}