Raph Levien
Raph Levien
Why is the `Rc` necessary? It's because I want to encapsulate *just* the concept of the safe wrapper of to the reference, and especially make it movable from the safe...
I'll let others critique the above, but I should clearly state another goal: ideally I'd like a safety boundary so that I can add whatever methods I like to the...
The use of `Rc` has a very subtle soundness hole: it can be moved into a context where `Drop` is not protected by a `'p` lifetime ensuring the drop happens...