[][src]Function sqlx::query_as_with

pub fn query_as_with<'q, DB, O, A>(
    sql: &'q str,
    arguments: A
) -> QueryAs<'q, DB, O, A> where
    A: IntoArguments<'q, DB>,
    DB: Database,
    O: for<'r> FromRow<'r, <DB as Database>::Row>, 

Make a SQL query, with the given arguments, that is mapped to a concrete type using FromRow.