pub struct TableCellStyleSuggestionState {
pub background_color_suggested: Option<bool>,
pub border_bottom_suggested: Option<bool>,
pub border_left_suggested: Option<bool>,
pub border_right_suggested: Option<bool>,
pub border_top_suggested: Option<bool>,
pub column_span_suggested: Option<bool>,
pub content_alignment_suggested: Option<bool>,
pub padding_bottom_suggested: Option<bool>,
pub padding_left_suggested: Option<bool>,
pub padding_right_suggested: Option<bool>,
pub padding_top_suggested: Option<bool>,
pub row_span_suggested: Option<bool>,
}
Expand description
A mask that indicates which of the fields on the base TableCellStyle 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_color_suggested: Option<bool>
Indicates if there was a suggested change to background_color.
border_bottom_suggested: Option<bool>
Indicates if there was a suggested change to border_bottom.
border_left_suggested: Option<bool>
Indicates if there was a suggested change to border_left.
border_right_suggested: Option<bool>
Indicates if there was a suggested change to border_right.
border_top_suggested: Option<bool>
Indicates if there was a suggested change to border_top.
column_span_suggested: Option<bool>
Indicates if there was a suggested change to column_span.
content_alignment_suggested: Option<bool>
Indicates if there was a suggested change to content_alignment.
padding_bottom_suggested: Option<bool>
Indicates if there was a suggested change to padding_bottom.
padding_left_suggested: Option<bool>
Indicates if there was a suggested change to padding_left.
padding_right_suggested: Option<bool>
Indicates if there was a suggested change to padding_right.
padding_top_suggested: Option<bool>
Indicates if there was a suggested change to padding_top.
row_span_suggested: Option<bool>
Indicates if there was a suggested change to row_span.
Trait Implementations§
Source§impl Clone for TableCellStyleSuggestionState
impl Clone for TableCellStyleSuggestionState
Source§fn clone(&self) -> TableCellStyleSuggestionState
fn clone(&self) -> TableCellStyleSuggestionState
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for TableCellStyleSuggestionState
impl Default for TableCellStyleSuggestionState
Source§fn default() -> TableCellStyleSuggestionState
fn default() -> TableCellStyleSuggestionState
Source§impl<'de> Deserialize<'de> for TableCellStyleSuggestionState
impl<'de> Deserialize<'de> for TableCellStyleSuggestionState
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl Part for TableCellStyleSuggestionState
Auto Trait Implementations§
impl Freeze for TableCellStyleSuggestionState
impl RefUnwindSafe for TableCellStyleSuggestionState
impl Send for TableCellStyleSuggestionState
impl Sync for TableCellStyleSuggestionState
impl Unpin for TableCellStyleSuggestionState
impl UnwindSafe for TableCellStyleSuggestionState
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more