pub struct ParagraphElement {
pub auto_text: Option<AutoText>,
pub column_break: Option<ColumnBreak>,
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.
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
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ParagraphElement
impl Debug for ParagraphElement
Source§impl Default for ParagraphElement
impl Default for ParagraphElement
Source§fn default() -> ParagraphElement
fn default() -> ParagraphElement
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ParagraphElement
impl<'de> Deserialize<'de> for ParagraphElement
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for ParagraphElement
impl Serialize for ParagraphElement
impl Part for ParagraphElement
Auto Trait Implementations§
impl Freeze for ParagraphElement
impl RefUnwindSafe for ParagraphElement
impl Send for ParagraphElement
impl Sync for ParagraphElement
impl Unpin for ParagraphElement
impl UnwindSafe for ParagraphElement
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more