HasValue

Trait HasValue 

Source
pub trait HasValue {
    // Required method
    fn value(&self) -> Cow<'_, str>;
}
Expand description

Trait for types that can provide a value for report parameters.

Required Methods§

Source

fn value(&self) -> Cow<'_, str>

Implementations on Foreign Types§

Source§

impl HasValue for &str

Source§

fn value(&self) -> Cow<'_, str>

Source§

impl HasValue for bool

Source§

fn value(&self) -> Cow<'_, str>

Source§

impl HasValue for u32

Source§

fn value(&self) -> Cow<'_, str>

Source§

impl HasValue for String

Source§

fn value(&self) -> Cow<'_, str>

Source§

impl HasValue for NaiveDate

Source§

fn value(&self) -> Cow<'_, str>

Source§

impl<V: HasValue> HasValue for Vec<V>

Source§

fn value(&self) -> Cow<'_, str>

Implementors§