pub struct ParagraphElement {Show 13 fields
pub auto_text: Option<AutoText>,
pub column_break: Option<ColumnBreak>,
pub date_element: Option<DateElement>,
pub end_index: Option<i32>,
pub equation: Option<Equation>,
pub footnote_reference: Option<FootnoteReference>,
pub horizontal_rule: Option<HorizontalRule>,
pub inline_object_element: Option<InlineObjectElement>,
pub page_break: Option<PageBreak>,
pub person: Option<Person>,
pub rich_link: Option<RichLink>,
pub start_index: Option<i32>,
pub text_run: Option<TextRun>,
}Expand description
A ParagraphElement describes content within a Paragraph.
This type is not used in any activity, and only used as part of another schema.
Fields§
§auto_text: Option<AutoText>An auto text paragraph element.
column_break: Option<ColumnBreak>A column break paragraph element.
date_element: Option<DateElement>A paragraph element that represents a date.
end_index: Option<i32>The zero-base end index of this paragraph element, exclusive, in UTF-16 code units.
equation: Option<Equation>An equation paragraph element.
footnote_reference: Option<FootnoteReference>A footnote reference paragraph element.
horizontal_rule: Option<HorizontalRule>A horizontal rule paragraph element.
inline_object_element: Option<InlineObjectElement>An inline object paragraph element.
page_break: Option<PageBreak>A page break paragraph element.
person: Option<Person>A paragraph element that links to a person or email address.
rich_link: Option<RichLink>A paragraph element that links to a Google resource (such as a file in Google Drive, a YouTube video, or a Calendar event.)
start_index: Option<i32>The zero-based start index of this paragraph element, in UTF-16 code units.
text_run: Option<TextRun>A text run paragraph element.
Trait Implementations§
Source§impl Clone for ParagraphElement
impl Clone for ParagraphElement
Source§fn clone(&self) -> ParagraphElement
fn clone(&self) -> ParagraphElement
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more