pub struct DateElementPropertiesSuggestionState {
pub date_format_suggested: Option<bool>,
pub locale_suggested: Option<bool>,
pub time_format_suggested: Option<bool>,
pub time_zone_id_suggested: Option<bool>,
pub timestamp_suggested: Option<bool>,
}Expand description
A mask that indicates which of the fields on the base DateElementProperties 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§
§date_format_suggested: Option<bool>Indicates if there was a suggested change to date_format.
locale_suggested: Option<bool>Indicates if there was a suggested change to locale.
time_format_suggested: Option<bool>Indicates if there was a suggested change to time_format.
time_zone_id_suggested: Option<bool>Indicates if there was a suggested change to time_zone_id.
timestamp_suggested: Option<bool>Indicates if there was a suggested change to timestamp.
Trait Implementations§
Source§impl Clone for DateElementPropertiesSuggestionState
impl Clone for DateElementPropertiesSuggestionState
Source§fn clone(&self) -> DateElementPropertiesSuggestionState
fn clone(&self) -> DateElementPropertiesSuggestionState
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for DateElementPropertiesSuggestionState
impl Default for DateElementPropertiesSuggestionState
Source§fn default() -> DateElementPropertiesSuggestionState
fn default() -> DateElementPropertiesSuggestionState
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DateElementPropertiesSuggestionState
impl<'de> Deserialize<'de> for DateElementPropertiesSuggestionState
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>,
Deserialize this value from the given Serde deserializer. Read more
impl Part for DateElementPropertiesSuggestionState
Auto Trait Implementations§
impl Freeze for DateElementPropertiesSuggestionState
impl RefUnwindSafe for DateElementPropertiesSuggestionState
impl Send for DateElementPropertiesSuggestionState
impl Sync for DateElementPropertiesSuggestionState
impl Unpin for DateElementPropertiesSuggestionState
impl UnwindSafe for DateElementPropertiesSuggestionState
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
Mutably borrows from an owned value. Read more