pub trait ParamValue<'a> { // Required method fn as_value(&self) -> Cow<'a, str>; }
A trait representing a parameter value.
The parameter value as a string.