RadicalZephyr / sodium-rust

FRP implementation in Rust
BSD 3-Clause "New" or "Revised" License
1 stars 0 forks source link

Transaction::close should take self by value #19

Open RadicalZephyr opened 7 months ago

RadicalZephyr commented 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.