Function __query_with_result
pub fn __query_with_result<'q, DB, A>(
sql: &'q str,
arguments: Result<A, Box<dyn Error + Sync + Send>>,
) -> Query<'q, DB, A>where
DB: Database,
A: IntoArguments<'q, DB>,
Expand description
Same as query_with
but is initialized with a Result of arguments instead