rust-apache-age
rust-apache-age copied to clipboard
Require less `mut`, allow multiple (non-mut) references to Client
The function execute_cypher
of Client
requires &mut self
, which doesn't seem to be required. However, having it mut
seems to make it impossible to use transactions, as that would also require &mut self
, which flows into the transaction.