[][src]Struct google_docs1::ParagraphStyleSuggestionState

pub struct ParagraphStyleSuggestionState {
    pub avoid_widow_and_orphan_suggested: Option<bool>,
    pub border_bottom_suggested: Option<bool>,
    pub named_style_type_suggested: Option<bool>,
    pub border_between_suggested: Option<bool>,
    pub border_top_suggested: Option<bool>,
    pub keep_with_next_suggested: Option<bool>,
    pub space_above_suggested: Option<bool>,
    pub alignment_suggested: Option<bool>,
    pub indent_end_suggested: Option<bool>,
    pub direction_suggested: Option<bool>,
    pub border_right_suggested: Option<bool>,
    pub shading_suggestion_state: Option<ShadingSuggestionState>,
    pub keep_lines_together_suggested: Option<bool>,
    pub line_spacing_suggested: Option<bool>,
    pub spacing_mode_suggested: Option<bool>,
    pub indent_start_suggested: Option<bool>,
    pub space_below_suggested: Option<bool>,
    pub border_left_suggested: Option<bool>,
    pub indent_first_line_suggested: Option<bool>,
    pub heading_id_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

avoid_widow_and_orphan_suggested: Option<bool>

Indicates if there was a suggested change to avoid_widow_and_orphan.

border_bottom_suggested: Option<bool>

Indicates if there was a suggested change to border_bottom.

named_style_type_suggested: Option<bool>

Indicates if there was a suggested change to named_style_type.

border_between_suggested: Option<bool>

Indicates if there was a suggested change to border_between.

border_top_suggested: Option<bool>

Indicates if there was a suggested change to border_top.

keep_with_next_suggested: Option<bool>

Indicates if there was a suggested change to keep_with_next.

space_above_suggested: Option<bool>

Indicates if there was a suggested change to space_above.

alignment_suggested: Option<bool>

Indicates if there was a suggested change to alignment.

indent_end_suggested: Option<bool>

Indicates if there was a suggested change to indent_end.

direction_suggested: Option<bool>

Indicates if there was a suggested change to direction.

border_right_suggested: Option<bool>

Indicates if there was a suggested change to border_right.

shading_suggestion_state: Option<ShadingSuggestionState>

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

keep_lines_together_suggested: Option<bool>

Indicates if there was a suggested change to keep_lines_together.

line_spacing_suggested: Option<bool>

Indicates if there was a suggested change to line_spacing.

spacing_mode_suggested: Option<bool>

Indicates if there was a suggested change to spacing_mode.

indent_start_suggested: Option<bool>

Indicates if there was a suggested change to indent_start.

space_below_suggested: Option<bool>

Indicates if there was a suggested change to space_below.

border_left_suggested: Option<bool>

Indicates if there was a suggested change to border_left.

indent_first_line_suggested: Option<bool>

Indicates if there was a suggested change to indent_first_line.

heading_id_suggested: Option<bool>

Indicates if there was a suggested change to heading_id.

Trait Implementations

impl Part for ParagraphStyleSuggestionState[src]

impl Default for ParagraphStyleSuggestionState[src]

impl Clone for ParagraphStyleSuggestionState[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for ParagraphStyleSuggestionState[src]

impl Serialize for ParagraphStyleSuggestionState[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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