Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
conradludgate committed Oct 31, 2023
1 parent d80293b commit 84f2046
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions tokio-postgres/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -376,11 +376,7 @@ impl Client {

/// Pass text directly to the Postgres backend to allow it to sort out typing itself and
/// to save a roundtrip
pub async fn query_raw_txt<S, I>(
&self,
statement: &str,
params: I,
) -> Result<RowStream, Error>
pub async fn query_raw_txt<S, I>(&self, statement: &str, params: I) -> Result<RowStream, Error>
where
S: AsRef<str>,
I: IntoIterator<Item = Option<S>>,
Expand Down

0 comments on commit 84f2046

Please sign in to comment.