pub struct VariableData {
pub variables: Option<HashMap<String, Value>>,
}Expand description
VariableData contains the variable data for this step.
This type is not used in any activity, and only used as part of another schema.
Fields§
§variables: Option<HashMap<String, Value>>Variables that are associated with this step.
Trait Implementations§
Source§impl Clone for VariableData
impl Clone for VariableData
Source§fn clone(&self) -> VariableData
fn clone(&self) -> VariableData
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 Debug for VariableData
impl Debug for VariableData
Source§impl Default for VariableData
impl Default for VariableData
Source§fn default() -> VariableData
fn default() -> VariableData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VariableData
impl<'de> Deserialize<'de> for VariableData
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
Source§impl Serialize for VariableData
impl Serialize for VariableData
impl Part for VariableData
Auto Trait Implementations§
impl Freeze for VariableData
impl RefUnwindSafe for VariableData
impl Send for VariableData
impl Sync for VariableData
impl Unpin for VariableData
impl UnwindSafe for VariableData
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