Struct google_docs1::api::DocumentStyleSuggestionState[][src]

pub struct DocumentStyleSuggestionState {
    pub background_suggestion_state: Option<BackgroundSuggestionState>,
    pub default_footer_id_suggested: Option<bool>,
    pub default_header_id_suggested: Option<bool>,
    pub even_page_footer_id_suggested: Option<bool>,
    pub even_page_header_id_suggested: Option<bool>,
    pub first_page_footer_id_suggested: Option<bool>,
    pub first_page_header_id_suggested: Option<bool>,
    pub margin_bottom_suggested: Option<bool>,
    pub margin_footer_suggested: Option<bool>,
    pub margin_header_suggested: Option<bool>,
    pub margin_left_suggested: Option<bool>,
    pub margin_right_suggested: Option<bool>,
    pub margin_top_suggested: Option<bool>,
    pub page_number_start_suggested: Option<bool>,
    pub page_size_suggestion_state: Option<SizeSuggestionState>,
    pub use_custom_header_footer_margins_suggested: Option<bool>,
    pub use_even_page_header_footer_suggested: Option<bool>,
    pub use_first_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

background_suggestion_state: Option<BackgroundSuggestionState>

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

default_footer_id_suggested: Option<bool>

Indicates if there was a suggested change to default_footer_id.

default_header_id_suggested: Option<bool>

Indicates if there was a suggested change to default_header_id.

even_page_footer_id_suggested: Option<bool>

Indicates if there was a suggested change to even_page_footer_id.

even_page_header_id_suggested: Option<bool>

Indicates if there was a suggested change to even_page_header_id.

first_page_footer_id_suggested: Option<bool>

Indicates if there was a suggested change to first_page_footer_id.

first_page_header_id_suggested: Option<bool>

Indicates if there was a suggested change to first_page_header_id.

margin_bottom_suggested: Option<bool>

Indicates if there was a suggested change to margin_bottom.

margin_footer_suggested: Option<bool>

Indicates if there was a suggested change to margin_footer.

margin_header_suggested: Option<bool>

Indicates if there was a suggested change to margin_header.

margin_left_suggested: Option<bool>

Indicates if there was a suggested change to margin_left.

margin_right_suggested: Option<bool>

Indicates if there was a suggested change to margin_right.

margin_top_suggested: Option<bool>

Indicates if there was a suggested change to margin_top.

page_number_start_suggested: Option<bool>

Indicates if there was a suggested change to page_number_start.

page_size_suggestion_state: Option<SizeSuggestionState>

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

use_custom_header_footer_margins_suggested: Option<bool>

Indicates if there was a suggested change to use_custom_header_footer_margins.

use_even_page_header_footer_suggested: Option<bool>

Indicates if there was a suggested change to use_even_page_header_footer.

use_first_page_header_footer_suggested: Option<bool>

Indicates if there was a suggested change to use_first_page_header_footer.

Trait Implementations

impl Clone for DocumentStyleSuggestionState[src]

impl Debug for DocumentStyleSuggestionState[src]

impl Default for DocumentStyleSuggestionState[src]

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

impl Part for DocumentStyleSuggestionState[src]

impl Serialize for DocumentStyleSuggestionState[src]

Auto Trait Implementations

impl RefUnwindSafe for DocumentStyleSuggestionState[src]

impl Send for DocumentStyleSuggestionState[src]

impl Sync for DocumentStyleSuggestionState[src]

impl Unpin for DocumentStyleSuggestionState[src]

impl UnwindSafe for DocumentStyleSuggestionState[src]

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.