Update tokio-postgres/src/generic_client.rs

This commit is contained in:
Steven Fackler 2023-01-08 08:32:00 -05:00 committed by GitHub
parent e38e435665
commit 383fd50f75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -72,7 +72,6 @@ pub trait GenericClient: private::Sealed {
/// Like `Client::batch_execute`.
async fn batch_execute(&self, query: &str) -> Result<(), Error>;
/// Returns a reference to the underlying `Client`.
fn client(&self) -> &Client;
}