Trait IntoSql

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

Required Methods§

Source

fn sql(&self) -> String

Implementations on Foreign Types§

Source§

impl IntoSql for &Value

Source§

fn sql(&self) -> String

Source§

impl IntoSql for &str

Source§

fn sql(&self) -> String

Source§

impl IntoSql for Cow<'_, Value>

Source§

fn sql(&self) -> String

Source§

impl IntoSql for Value

Source§

fn sql(&self) -> String

Source§

impl IntoSql for bool

Source§

fn sql(&self) -> String

Source§

impl IntoSql for f32

Source§

fn sql(&self) -> String

Source§

impl IntoSql for f64

Source§

fn sql(&self) -> String

Source§

impl IntoSql for i32

Source§

fn sql(&self) -> String

Source§

impl IntoSql for i64

Source§

fn sql(&self) -> String

Source§

impl IntoSql for u32

Source§

fn sql(&self) -> String

Source§

impl IntoSql for u64

Source§

fn sql(&self) -> String

Source§

impl IntoSql for String

Source§

fn sql(&self) -> String

Implementors§