pub struct ValueInfo {
pub annotation: Option<String>,
pub overridden_value: Option<String>,
pub value: Option<String>,
}Expand description
Annotatated property value.
This type is not used in any activity, and only used as part of another schema.
Fields§
§annotation: Option<String>Annotation, comment or explanation why the property was set.
overridden_value: Option<String>Optional. Value which was replaced by the corresponding component.
value: Option<String>Property value.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ValueInfo
impl<'de> Deserialize<'de> for ValueInfo
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 ValueInfo
Auto Trait Implementations§
impl Freeze for ValueInfo
impl RefUnwindSafe for ValueInfo
impl Send for ValueInfo
impl Sync for ValueInfo
impl Unpin for ValueInfo
impl UnwindSafe for ValueInfo
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