Struct google_docs1::api::ParagraphElement[][src]

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 start_index: Option<i32>,
    pub text_run: Option<TextRun>,
}

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.

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

impl Clone for ParagraphElement[src]

impl Debug for ParagraphElement[src]

impl Default for ParagraphElement[src]

impl<'de> Deserialize<'de> for ParagraphElement[src]

impl Part for ParagraphElement[src]

impl Serialize for ParagraphElement[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.