[][src]Struct google_docs1::EmbeddedObjectSuggestionState

pub struct EmbeddedObjectSuggestionState {
    pub linked_content_reference_suggestion_state: Option<LinkedContentReferenceSuggestionState>,
    pub size_suggestion_state: Option<SizeSuggestionState>,
    pub embedded_drawing_properties_suggestion_state: Option<EmbeddedDrawingPropertiesSuggestionState>,
    pub margin_right_suggested: Option<bool>,
    pub image_properties_suggestion_state: Option<ImagePropertiesSuggestionState>,
    pub description_suggested: Option<bool>,
    pub margin_left_suggested: Option<bool>,
    pub margin_top_suggested: Option<bool>,
    pub margin_bottom_suggested: Option<bool>,
    pub title_suggested: Option<bool>,
    pub embedded_object_border_suggestion_state: Option<EmbeddedObjectBorderSuggestionState>,
}

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

linked_content_reference_suggestion_state: Option<LinkedContentReferenceSuggestionState>

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

size_suggestion_state: Option<SizeSuggestionState>

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

embedded_drawing_properties_suggestion_state: Option<EmbeddedDrawingPropertiesSuggestionState>

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

margin_right_suggested: Option<bool>

Indicates if there was a suggested change to margin_right.

image_properties_suggestion_state: Option<ImagePropertiesSuggestionState>

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

description_suggested: Option<bool>

Indicates if there was a suggested change to description.

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.

margin_bottom_suggested: Option<bool>

Indicates if there was a suggested change to margin_bottom.

title_suggested: Option<bool>

Indicates if there was a suggested change to title.

embedded_object_border_suggestion_state: Option<EmbeddedObjectBorderSuggestionState>

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

Trait Implementations

impl Part for EmbeddedObjectSuggestionState[src]

impl Default for EmbeddedObjectSuggestionState[src]

impl Clone for EmbeddedObjectSuggestionState[src]

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

Performs copy-assignment from source. Read more

impl Debug for EmbeddedObjectSuggestionState[src]

impl Serialize for EmbeddedObjectSuggestionState[src]

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