Struct google_docs1::api::ParagraphStyleSuggestionState[][src]

pub struct ParagraphStyleSuggestionState {
    pub alignment_suggested: Option<bool>,
    pub avoid_widow_and_orphan_suggested: Option<bool>,
    pub border_between_suggested: Option<bool>,
    pub border_bottom_suggested: Option<bool>,
    pub border_left_suggested: Option<bool>,
    pub border_right_suggested: Option<bool>,
    pub border_top_suggested: Option<bool>,
    pub direction_suggested: Option<bool>,
    pub heading_id_suggested: Option<bool>,
    pub indent_end_suggested: Option<bool>,
    pub indent_first_line_suggested: Option<bool>,
    pub indent_start_suggested: Option<bool>,
    pub keep_lines_together_suggested: Option<bool>,
    pub keep_with_next_suggested: Option<bool>,
    pub line_spacing_suggested: Option<bool>,
    pub named_style_type_suggested: Option<bool>,
    pub shading_suggestion_state: Option<ShadingSuggestionState>,
    pub space_above_suggested: Option<bool>,
    pub space_below_suggested: Option<bool>,
    pub spacing_mode_suggested: Option<bool>,
}

A mask that indicates which of the fields on the base ParagraphStyle have been changed in this suggestion. For any field set to true, there is a new suggested value.

This type is not used in any activity, and only used as part of another schema.

Fields

alignment_suggested: Option<bool>

Indicates if there was a suggested change to alignment.

avoid_widow_and_orphan_suggested: Option<bool>

Indicates if there was a suggested change to avoid_widow_and_orphan.

border_between_suggested: Option<bool>

Indicates if there was a suggested change to border_between.

border_bottom_suggested: Option<bool>

Indicates if there was a suggested change to border_bottom.

border_left_suggested: Option<bool>

Indicates if there was a suggested change to border_left.

border_right_suggested: Option<bool>

Indicates if there was a suggested change to border_right.

border_top_suggested: Option<bool>

Indicates if there was a suggested change to border_top.

direction_suggested: Option<bool>

Indicates if there was a suggested change to direction.

heading_id_suggested: Option<bool>

Indicates if there was a suggested change to heading_id.

indent_end_suggested: Option<bool>

Indicates if there was a suggested change to indent_end.

indent_first_line_suggested: Option<bool>

Indicates if there was a suggested change to indent_first_line.

indent_start_suggested: Option<bool>

Indicates if there was a suggested change to indent_start.

keep_lines_together_suggested: Option<bool>

Indicates if there was a suggested change to keep_lines_together.

keep_with_next_suggested: Option<bool>

Indicates if there was a suggested change to keep_with_next.

line_spacing_suggested: Option<bool>

Indicates if there was a suggested change to line_spacing.

named_style_type_suggested: Option<bool>

Indicates if there was a suggested change to named_style_type.

shading_suggestion_state: Option<ShadingSuggestionState>

A mask that indicates which of the fields in shading have been changed in this suggestion.

space_above_suggested: Option<bool>

Indicates if there was a suggested change to space_above.

space_below_suggested: Option<bool>

Indicates if there was a suggested change to space_below.

spacing_mode_suggested: Option<bool>

Indicates if there was a suggested change to spacing_mode.

Trait Implementations

impl Clone for ParagraphStyleSuggestionState[src]

impl Debug for ParagraphStyleSuggestionState[src]

impl Default for ParagraphStyleSuggestionState[src]

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

impl Part for ParagraphStyleSuggestionState[src]

impl Serialize for ParagraphStyleSuggestionState[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.