pub struct DocumentStyleSuggestionState {Show 19 fields
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 flip_page_orientation_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>,
}Expand description
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’s 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.
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.
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.
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.
flip_page_orientation_suggested: Option<bool>Optional. Indicates if there was a suggested change to flip_page_orientation.
margin_bottom_suggested: Option<bool>Indicates if there was a suggested change to margin_bottom.
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.
Indicates if there was a suggested change to use_custom_header_footer_margins.
Indicates if there was a suggested change to use_even_page_header_footer.
Indicates if there was a suggested change to use_first_page_header_footer.
Trait Implementations§
Source§impl Clone for DocumentStyleSuggestionState
impl Clone for DocumentStyleSuggestionState
Source§fn clone(&self) -> DocumentStyleSuggestionState
fn clone(&self) -> DocumentStyleSuggestionState
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more