pub type ParameterHashMap<'a> = HashMap<&'a str, Option<&'a str>>;
Expand description

A HashMap type used for storing parameters with optional values.

The keys are string references, and the values are optional string references.