<p>Does Rust have anything like a Java/ Objective-C &quot;weak reference&quot;? I.E. I mean</p><p>1. One Owner<br />2. Many Rc&lt;T&gt; type references, except<br />3. If the Owner ever Drops the true object, all Rc&lt;T&gt; type references become instantly aware of this, and the &quot;weak&quot; references can both be checked for liveness and also cleanly panic if they are accessed after the drop dead date</p>
Reply