This adds `execute_raw`, `query_one`, `query_opt`, `query_raw`, and `prepare_typed` to the generic trait introduced in #525.
We have to make the trait methods differ from the normal methods a bit by adding Sync + Send bounds to the ToStatement parameter which is a bit unfortunate, but necessary until GATs async_trait unnecessary. Closes #357