docx-reader 0.1.1

A .docx file reader in rust
Documentation
mod app;
mod core;
mod custom;

pub use self::app::*;
pub use self::core::*;
pub use self::custom::*;

use serde::Serialize;

#[derive(Debug, Clone, PartialEq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct DocProps {
	pub app: AppProps,
	pub core: CoreProps,
	pub custom: CustomProps,
}

impl DocProps {
	pub(crate) fn new(core_config: CorePropsConfig) -> DocProps {
		let app = AppProps::new();
		let core = CoreProps::new(core_config);
		let custom = CustomProps::new();
		DocProps { app, core, custom }
	}

	pub fn created_at(mut self, date: &str) -> Self {
		self.core = self.core.created_at(date);
		self
	}

	pub fn updated_at(mut self, date: &str) -> Self {
		self.core = self.core.updated_at(date);
		self
	}

	pub fn custom_property(mut self, name: impl Into<String>, item: impl Into<String>) -> Self {
		self.custom = self.custom.add_custom_property(name.into(), item.into());
		self
	}
}

#[derive(Debug)]
pub struct XMLDocProps {
	pub app: Vec<u8>,
	pub core: Vec<u8>,
	pub custom: Vec<u8>,
}