pub fn add_attr_to_json_component(
    v: &Value,
    name: String,
    value: Option<Value>
) -> Value
Expand description

Adds an attribute to a JSON component.

Arguments

  • v - A reference to a minijinja::Value that represents the JSON component to which the attribute should be added.
  • name - A String that represents the name of the attribute to be added.
  • value - An Option<minijinja::Value> that represents the value of the attribute to be added. If None, an empty string is used as the value.

Returns

  • minijinja::Value - The updated JSON component with the added attribute.