Open RadicalZephyr opened 7 months ago
Right now it takes &self, since the purpose of this RAII guard is to keep a transaction open while it exists it would be more idiomatic for this to take self and make it effectively a dropping method.
&self
self
Right now it takes
&self
, since the purpose of this RAII guard is to keep a transaction open while it exists it would be more idiomatic for this to takeself
and make it effectively a dropping method.