Trait IntoQuery

Source
pub trait IntoQuery {
    // Required method
    fn into_query(self) -> Result<Vec<Statement>>;
}
Expand description

A trait for converting inputs into SQL statements

Required Methods§

Source

fn into_query(self) -> Result<Vec<Statement>>

Converts an input into SQL statements

Implementations on Foreign Types§

Source§

impl IntoQuery for &str

Source§

impl IntoQuery for &String

Source§

impl IntoQuery for String

Source§

impl IntoQuery for Vec<Statement>

Implementors§