Struct google_docs1::api::SuggestedTableRowStyle[][src]

pub struct SuggestedTableRowStyle {
    pub table_row_style: Option<TableRowStyle>,
    pub table_row_style_suggestion_state: Option<TableRowStyleSuggestionState>,
}

A suggested change to a TableRowStyle.

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

Fields

table_row_style: Option<TableRowStyle>

A TableRowStyle that only includes the changes made in this suggestion. This can be used along with the table_row_style_suggestion_state to see which fields have changed and their new values.

table_row_style_suggestion_state: Option<TableRowStyleSuggestionState>

A mask that indicates which of the fields on the base TableRowStyle have been changed in this suggestion.

Trait Implementations

impl Clone for SuggestedTableRowStyle[src]

impl Debug for SuggestedTableRowStyle[src]

impl Default for SuggestedTableRowStyle[src]

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

impl Part for SuggestedTableRowStyle[src]

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