pub trait ParamValue<'a> {
    fn as_value(&self) -> Cow<'a, str>;
}
Expand description

A trait representing a parameter value.

Required methods

The parameter value as a string.

Implementations on Foreign Types

serialize a Vec where T implements ToString as a string of comma-seperated values

serialize a &Vec<T> where T implements ToString as a string of comma-seperated values

Implementors