pub struct ParameterSubstitutor;Expand description
Parameter substitution engine
Implementations§
Source§impl ParameterSubstitutor
impl ParameterSubstitutor
Sourcepub fn substitute(
value: &Value,
parameters: &HashMap<String, Value>,
) -> WorkflowResult<Value>
pub fn substitute( value: &Value, parameters: &HashMap<String, Value>, ) -> WorkflowResult<Value>
Substitute parameters in a JSON value
Replaces all parameter references (${param_name}) with their values. Handles nested parameter references and validates all parameters are provided.
Auto Trait Implementations§
impl Freeze for ParameterSubstitutor
impl RefUnwindSafe for ParameterSubstitutor
impl Send for ParameterSubstitutor
impl Sync for ParameterSubstitutor
impl Unpin for ParameterSubstitutor
impl UnwindSafe for ParameterSubstitutor
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