rust-apache-age
rust-apache-age copied to clipboard
feat: don't require `&mut self` for the async client
The underlying client can work with &self
and concurrent requests. Having if &mut self
, will cause an issue when creating a transaction, as the transaction will borrow the client, and so it no longer is possible to mut-borrow the client.
Switching this to a simple &self
fixes that issue.
Closes: #11