pub trait ParamValue<'a> { fn as_value(&self) -> Cow<'a, str>; }
A trait representing a parameter value.
The parameter value as a string.
serialize a Vec where T implements ToString as a string of comma-separated values
serialize a &Vec<T> where T implements ToString as a string of comma-separated values
&Vec<T>