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