pub struct DocumentTab {
pub body: Option<Body>,
pub document_style: Option<DocumentStyle>,
pub footers: Option<HashMap<String, Footer>>,
pub footnotes: Option<HashMap<String, Footnote>>,
pub headers: Option<HashMap<String, Header>>,
pub inline_objects: Option<HashMap<String, InlineObject>>,
pub lists: Option<HashMap<String, List>>,
pub named_ranges: Option<HashMap<String, NamedRanges>>,
pub named_styles: Option<NamedStyles>,
pub positioned_objects: Option<HashMap<String, PositionedObject>>,
pub suggested_document_style_changes: Option<HashMap<String, SuggestedDocumentStyle>>,
pub suggested_named_styles_changes: Option<HashMap<String, SuggestedNamedStyles>>,
}Expand description
A tab with document contents.
This type is not used in any activity, and only used as part of another schema.
Fields§
§body: Option<Body>The main body of the document tab.
document_style: Option<DocumentStyle>The style of the document tab.
The footers in the document tab, keyed by footer ID.
footnotes: Option<HashMap<String, Footnote>>The footnotes in the document tab, keyed by footnote ID.
headers: Option<HashMap<String, Header>>The headers in the document tab, keyed by header ID.
inline_objects: Option<HashMap<String, InlineObject>>The inline objects in the document tab, keyed by object ID.
lists: Option<HashMap<String, List>>The lists in the document tab, keyed by list ID.
named_ranges: Option<HashMap<String, NamedRanges>>The named ranges in the document tab, keyed by name.
named_styles: Option<NamedStyles>The named styles of the document tab.
positioned_objects: Option<HashMap<String, PositionedObject>>The positioned objects in the document tab, keyed by object ID.
suggested_document_style_changes: Option<HashMap<String, SuggestedDocumentStyle>>The suggested changes to the style of the document tab, keyed by suggestion ID.
suggested_named_styles_changes: Option<HashMap<String, SuggestedNamedStyles>>The suggested changes to the named styles of the document tab, keyed by suggestion ID.
Trait Implementations§
Source§impl Clone for DocumentTab
impl Clone for DocumentTab
Source§fn clone(&self) -> DocumentTab
fn clone(&self) -> DocumentTab
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more