pub trait HasValue {
// Required method
fn value(&self) -> Cow<'_, str>;
}Expand description
Trait for types that can provide a value for report parameters.
pub trait HasValue {
// Required method
fn value(&self) -> Cow<'_, str>;
}Trait for types that can provide a value for report parameters.