Hacker News new | ask | show | jobs
by steveklabnik 2033 days ago
Rust-the-language doesn’t know anything about multiple ownership.

The standard library refcounted types don’t do anything special, if you get a cycle you leak. You can use weak refcounts to try and prevent this.