[][src]Struct google_docs1::DocumentStyleSuggestionState

pub struct DocumentStyleSuggestionState {
    pub margin_bottom_suggested: Option<bool>,
    pub even_page_header_id_suggested: Option<bool>,
    pub first_page_header_id_suggested: Option<bool>,
    pub margin_right_suggested: Option<bool>,
    pub page_number_start_suggested: Option<bool>,
    pub default_header_id_suggested: Option<bool>,
    pub default_footer_id_suggested: Option<bool>,
    pub margin_left_suggested: Option<bool>,
    pub margin_top_suggested: Option<bool>,
    pub first_page_footer_id_suggested: Option<bool>,
    pub page_size_suggestion_state: Option<SizeSuggestionState>,
    pub use_first_page_header_footer_suggested: Option<bool>,
    pub even_page_footer_id_suggested: Option<bool>,
    pub background_suggestion_state: Option<BackgroundSuggestionState>,
    pub use_even_page_header_footer_suggested: Option<bool>,
}

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

margin_bottom_suggested: Option<bool>

Indicates if there was a suggested change to margin_bottom.

even_page_header_id_suggested: Option<bool>

Indicates if there was a suggested change to even_page_header_id.

first_page_header_id_suggested: Option<bool>

Indicates if there was a suggested change to first_page_header_id.

margin_right_suggested: Option<bool>

Indicates if there was a suggested change to margin_right.

page_number_start_suggested: Option<bool>

Indicates if there was a suggested change to page_number_start.

default_header_id_suggested: Option<bool>

Indicates if there was a suggested change to default_header_id.

default_footer_id_suggested: Option<bool>

Indicates if there was a suggested change to default_footer_id.

margin_left_suggested: Option<bool>

Indicates if there was a suggested change to margin_left.

margin_top_suggested: Option<bool>

Indicates if there was a suggested change to margin_top.

first_page_footer_id_suggested: Option<bool>

Indicates if there was a suggested change to first_page_footer_id.

page_size_suggestion_state: Option<SizeSuggestionState>

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

use_first_page_header_footer_suggested: Option<bool>

Indicates if there was a suggested change to use_first_page_header_footer.

even_page_footer_id_suggested: Option<bool>

Indicates if there was a suggested change to even_page_footer_id.

background_suggestion_state: Option<BackgroundSuggestionState>

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

use_even_page_header_footer_suggested: Option<bool>

Indicates if there was a suggested change to use_even_page_header_footer.

Trait Implementations

impl Part for DocumentStyleSuggestionState[src]

impl Default for DocumentStyleSuggestionState[src]

impl Clone for DocumentStyleSuggestionState[src]

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

Performs copy-assignment from source. Read more

impl Debug for DocumentStyleSuggestionState[src]

impl Serialize for DocumentStyleSuggestionState[src]

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