Lines Matching refs:Sqlite
1546 Sqlite(Error), enumerator
1553 CustomError::Sqlite(ref se) => write!(f, "my custom error: {}", se), in fmt()
1566 CustomError::Sqlite(ref se) => Some(se), in cause()
1573 CustomError::Sqlite(se) in from()
1648 .query_and_then(NO_PARAMS, |row| row.get(1).map_err(CustomError::Sqlite)) in test_query_and_then_custom_error()
1669 .query_and_then(NO_PARAMS, |row| row.get(1).map_err(CustomError::Sqlite)) in test_query_and_then_custom_error_fails()
1674 CustomError::Sqlite(Error::InvalidColumnType(..)) => (), in test_query_and_then_custom_error_fails()
1679 .query_and_then(NO_PARAMS, |row| row.get(3).map_err(CustomError::Sqlite)) in test_query_and_then_custom_error_fails()
1684 CustomError::Sqlite(Error::InvalidColumnIndex(_)) => (), in test_query_and_then_custom_error_fails()
1710 row.get(1).map_err(CustomError::Sqlite) in test_query_row_and_then_custom_error()
1727 row.get(1).map_err(CustomError::Sqlite) in test_query_row_and_then_custom_error_fails()
1731 CustomError::Sqlite(Error::InvalidColumnType(..)) => (), in test_query_row_and_then_custom_error_fails()
1736 row.get(3).map_err(CustomError::Sqlite) in test_query_row_and_then_custom_error_fails()
1740 CustomError::Sqlite(Error::InvalidColumnIndex(_)) => (), in test_query_row_and_then_custom_error_fails()