Transactional Operations in Rust Earlier I was chatting to Yoshua, the author of this async cancellation blog about the section on halt-safety. The blog is a great read so I highly recommend it! The section on halt-safety is bang on correct too, but I wanted to expand on this topic further from what they have written. Memory Safety vs Application Safety Yoshua provides the following code example in their blog: // Regardless of where in the function we stop execution, destructors will be // ru...