[][src]Struct google_docs1::TableCellStyleSuggestionState

pub struct TableCellStyleSuggestionState {
    pub border_bottom_suggested: Option<bool>,
    pub border_right_suggested: Option<bool>,
    pub padding_bottom_suggested: Option<bool>,
    pub content_alignment_suggested: Option<bool>,
    pub padding_left_suggested: Option<bool>,
    pub border_left_suggested: Option<bool>,
    pub border_top_suggested: Option<bool>,
    pub column_span_suggested: Option<bool>,
    pub padding_right_suggested: Option<bool>,
    pub background_color_suggested: Option<bool>,
    pub row_span_suggested: Option<bool>,
    pub padding_top_suggested: Option<bool>,
}

A mask that indicates which of the fields on the base TableCellStyle 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

border_bottom_suggested: Option<bool>

Indicates if there was a suggested change to border_bottom.

border_right_suggested: Option<bool>

Indicates if there was a suggested change to border_right.

padding_bottom_suggested: Option<bool>

Indicates if there was a suggested change to padding_bottom.

content_alignment_suggested: Option<bool>

Indicates if there was a suggested change to content_alignment.

padding_left_suggested: Option<bool>

Indicates if there was a suggested change to padding_left.

border_left_suggested: Option<bool>

Indicates if there was a suggested change to border_left.

border_top_suggested: Option<bool>

Indicates if there was a suggested change to border_top.

column_span_suggested: Option<bool>

Indicates if there was a suggested change to column_span.

padding_right_suggested: Option<bool>

Indicates if there was a suggested change to padding_right.

background_color_suggested: Option<bool>

Indicates if there was a suggested change to background_color.

row_span_suggested: Option<bool>

Indicates if there was a suggested change to row_span.

padding_top_suggested: Option<bool>

Indicates if there was a suggested change to padding_top.

Trait Implementations

impl Part for TableCellStyleSuggestionState[src]

impl Default for TableCellStyleSuggestionState[src]

impl Clone for TableCellStyleSuggestionState[src]

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

Performs copy-assignment from source. Read more

impl Debug for TableCellStyleSuggestionState[src]

impl Serialize for TableCellStyleSuggestionState[src]

impl<'de> Deserialize<'de> for TableCellStyleSuggestionState[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]