[][src]Trait toql_core::query::FilterArg

pub trait FilterArg<T> {
    fn to_sql(self) -> String;
}

A trait to convert a simple datatype into a filter argument. Used by builder functions. Not very interesting ;)

Required methods

fn to_sql(self) -> String

Loading content...

Implementations on Foreign Types

impl<'_, '_> FilterArg<&'_ str> for &'_ str[src]

impl FilterArg<u8> for u8[src]

impl FilterArg<u16> for u16[src]

impl FilterArg<u32> for u32[src]

impl FilterArg<u64> for u64[src]

impl FilterArg<u128> for u128[src]

impl FilterArg<i8> for i8[src]

impl FilterArg<i16> for i16[src]

impl FilterArg<i32> for i32[src]

impl FilterArg<i64> for i64[src]

impl FilterArg<i128> for i128[src]

impl FilterArg<bool> for bool[src]

impl FilterArg<f32> for f32[src]

impl FilterArg<f64> for f64[src]

Loading content...

Implementors

Loading content...