docx_reader/documents/elements/section.rs
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(),
}
}
}