Trait SqlArg

Source
pub trait SqlArg {
    // Required method
    fn sql_arg(&self) -> String;
}

Required Methods§

Source

fn sql_arg(&self) -> String

Implementations on Foreign Types§

Source§

impl SqlArg for &bool

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for &f32

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for &f64

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for &i8

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for &i16

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for &i32

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for &i64

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for &i128

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for &isize

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for &str

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for &u8

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for &u16

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for &u32

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for &u64

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for &u128

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for &usize

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for Cow<'_, str>

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for bool

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for f32

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for f64

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for i8

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for i16

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for i32

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for i64

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for i128

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for isize

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for str

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for u8

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for u16

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for u32

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for u64

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for u128

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for usize

Source§

fn sql_arg(&self) -> String

Source§

impl SqlArg for String

Source§

fn sql_arg(&self) -> String

Source§

impl<T: SqlArg> SqlArg for &Option<T>

Source§

fn sql_arg(&self) -> String

Source§

impl<T: SqlArg> SqlArg for Option<T>

Source§

fn sql_arg(&self) -> String

Implementors§