Trait keen::ToFilterValue
[−]
[src]
pub trait ToFilterValue { fn to_filter(&self) -> String; }
Trait represents a type that can be used as a filter's value.
Required Methods
Implementors
impl ToFilterValue for i32
impl ToFilterValue for i64
impl ToFilterValue for isize
impl ToFilterValue for usize
impl ToFilterValue for u32
impl ToFilterValue for u64
impl ToFilterValue for f32
impl ToFilterValue for f64
impl<'a> ToFilterValue for &'a str
impl ToFilterValue for String
impl<'a> ToFilterValue for &'a String
impl<I: ToFilterValue> ToFilterValue for Vec<I>