Searched refs:CustomResult (Results 1 – 1 of 1) sorted by relevance
1577 type CustomResult<T> = Result<T, CustomError>; typedef1647 let results: CustomResult<Vec<String>> = query in test_query_and_then_custom_error()1668 let bad_type: CustomResult<Vec<f64>> = query in test_query_and_then_custom_error_fails()1678 let bad_idx: CustomResult<Vec<String>> = query in test_query_and_then_custom_error_fails()1688 let non_sqlite_err: CustomResult<Vec<String>> = query in test_query_and_then_custom_error_fails()1709 let results: CustomResult<String> = db.query_row_and_then(query, NO_PARAMS, |row| { in test_query_row_and_then_custom_error()1726 let bad_type: CustomResult<f64> = db.query_row_and_then(query, NO_PARAMS, |row| { in test_query_row_and_then_custom_error_fails()1735 let bad_idx: CustomResult<String> = db.query_row_and_then(query, NO_PARAMS, |row| { in test_query_row_and_then_custom_error_fails()1744 let non_sqlite_err: CustomResult<String> = in test_query_row_and_then_custom_error_fails()