Skip to main content

JobParameterInputValues

Type Alias JobParameterInputValues 

Source
pub type JobParameterInputValues = HashMap<String, ExprValue>;
Expand description

Input parameter values from the user (name โ†’ value).

Values are ExprValue so callers can pass native types directly:

  • CLI callers pass ExprValue::String("42".into()) for everything and let preprocess_job_parameters coerce to the target type.
  • Library callers can pass typed values like ExprValue::Int(42) or ExprValue::ListInt(vec![1, 2, 3]) directly.

Aliased Typeยง

pub struct JobParameterInputValues { /* private fields */ }