usesuper::paragraph::Paragraph;usesuper::table::Table;/// The document body, containing all block-level elements.
#[derive(Debug, Clone, Default)]pubstructBody{/// Ordered list of block elements (paragraphs and tables).
pubelements:Vec<BlockElement>,
}/// A block-level element in the document body (or in a table cell).
#[derive(Debug, Clone)]pubenumBlockElement{/// A paragraph (`w:p`).
Paragraph(Paragraph),/// A table (`w:tbl`).
Table(Table),}