pub struct SuggestedDateElementProperties {
pub date_element_properties: Option<DateElementProperties>,
pub date_element_properties_suggestion_state: Option<DateElementPropertiesSuggestionState>,
}Expand description
A suggested change to a DateElementProperties.
This type is not used in any activity, and only used as part of another schema.
Fields§
§date_element_properties: Option<DateElementProperties>DateElementProperties that only includes the changes made in this suggestion. This can be used along with the date_element_properties_suggestion_state to see which fields have changed and their new values.
date_element_properties_suggestion_state: Option<DateElementPropertiesSuggestionState>A mask that indicates which of the fields on the base DateElementProperties have been changed in this suggestion.
Trait Implementations§
Source§impl Clone for SuggestedDateElementProperties
impl Clone for SuggestedDateElementProperties
Source§fn clone(&self) -> SuggestedDateElementProperties
fn clone(&self) -> SuggestedDateElementProperties
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 SuggestedDateElementProperties
impl Default for SuggestedDateElementProperties
Source§fn default() -> SuggestedDateElementProperties
fn default() -> SuggestedDateElementProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SuggestedDateElementProperties
impl<'de> Deserialize<'de> for SuggestedDateElementProperties
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 SuggestedDateElementProperties
Auto Trait Implementations§
impl Freeze for SuggestedDateElementProperties
impl RefUnwindSafe for SuggestedDateElementProperties
impl Send for SuggestedDateElementProperties
impl Sync for SuggestedDateElementProperties
impl Unpin for SuggestedDateElementProperties
impl UnwindSafe for SuggestedDateElementProperties
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