Hacker News
- Rust data structures with circular references (2021) https://eli.thegreenplace.net/2021/rust-data-structures-with-circular-references/ 152 comments
- Rust data structures with circular references https://eli.thegreenplace.net/2021/rust-data-structures-with-circular-references/ 42 comments
- Reference cycle bug in Rust's scoped threads https://github.com/rust-lang/rust/issues/24292 23 comments
Lobsters
- capnproto-rust's custom mutable reference types http://dwrensha.github.io/capnproto-rust/2014/12/27/custom-mutable-references.html 7 comments rust
- Rzig: Zig reference-counted pointers inspired by Rust's Rc and Arc https://github.com/Aandreba/rzig/ 22 comments zig
- How librsvg exports reference-counted objects from Rust to C https://people.gnome.org/~federico/news-2017-02.html#17 25 comments rust
- On reference-counting and leaks in Rust http://smallcultfollowing.com/babysteps/blog/2015/04/29/on-reference-counting-and-leaks/ 104 comments programming
- Rust: Pass-By-Value or Pass-By-Reference? 👐 https://blog.ryanlevick.com/posts/rust-pass-value-or-reference/ 13 comments rust
- I designed a safer collection API than C++ STL in Rust with reference stability https://blog.cocl2.com/posts/rust-ref-stable-collection/ 29 comments rust
- Are we reference yet? C++ references in Rust https://medium.com/@adetaylor/are-we-reference-yet-c-references-in-rust-72c1c6c7015a 20 comments rust
- MiniDiff: A minimal reference implementation of automatic differentiation in Rust https://github.com/kurtschelfthout/minidiff 3 comments rust
- Attempting to build cyclical reference with Rust with RefCell https://play.rust-lang.org/?edition=2021&gist=2e39886a9e717a76b1fcc5cfa9aec701&mode=debug&version=stable 6 comments rust
- Alpha version of Vale's generational reference counting allocator as a Rust library. https://github.com/Kile-Asmussen/genref 9 comments rust
- Rust data structures with circular references https://eli.thegreenplace.net/2021/rust-data-structures-with-circular-references/ 19 comments rust
- Does Rust has an equivalent of C++ universal references? https://isocpp.org/blog/2012/11/universal-references-in-c11-scott-meyers 18 comments rust
- Demystifying Mutability and References in Rust https://dev.to/arunanshub/demystifying-mutability-and-references-in-rust-caf 4 comments rust
- Enso 2.0 Syntax Reference is out! Enso is a visual / textual programming language with a seamless polyglot interoperability with Python, Java, R, and JavaScript. Written in Rust, Java, and GraalVM. https://enso.org/docs/syntax 3 comments javascript
- Enso 2.0 Syntax Reference is out! Enso is a hybrid visual / textual language written in Rust, Java, and GraalVM. https://enso.org/docs/syntax 3 comments rust
- Cloning a reference and method call syntax in Rust https://www.fpcomplete.com/blog/cloning-reference-method-calls/ 5 comments rust
- Embedded Rust pattern: Zero Sized References https://ferrous-systems.com/blog/zero-sized-references/ 28 comments rust
- Accurate mental model for Rust's reference types https://docs.rs/dtolnay/*/dtolnay/macro._02__reference_types.html 65 comments rust
- Rust mutably borrows the whole struct even though I only mutably reference one of the fields? https://www.reddit.com/r/rust/comments/cufiq7/rust_mutably_borrows_the_whole_struct_even_though/ 9 comments rust
- Why does the Rust compiler not optimize code assuming that two mutable references cannot alias? https://stackoverflow.com/q/57259126/250259 48 comments rust
- Cactus Harvesting: Cycle-Aware Reference Counting in Rust https://hyperbo.la/w/cactus-harvesting/ 18 comments rust
- Pros/cons of a Rust target with reference counting for a dynamic language compiler? https://www.reddit.com/r/rust/comments/bzl5fc/proscons_of_a_rust_target_with_reference_counting/ 9 comments rust
- Rust: The Hard Parts - Part One: References, Borrowing, and Ownership https://naftuli.wtf/2019/03/20/rust-the-hard-parts/ 14 comments rust
- What's a reference in Rust? https://jvns.ca/blog/2017/11/27/rust-ref/ 5 comments programming
- What's a reference in Rust? https://jvns.ca/blog/2017/11/27/rust-ref/ 39 comments rust
- from Python to Rust - A quick reference guide for the Pythonista in the process of becoming a Rustacean https://github.com/rochacbruno/py2rs 4 comments rust
- Mix references to owned and borrowed data in Rust https://github.com/nvzqz/mixed-ref-rs 4 comments rust
- Why are there so many Madoka references in Rust's codebase? https://github.com/rust-lang/rust/search?utf8=%E2%9C%93&q=madoka&type= 33 comments rust
- Rust reference types for C++ programmers https://github.com/benjones/rustvscpp/blob/master/readme.md 18 comments rust
- The (historically lacking) language reference document has been moved into its own repo, and Chris Krycho is spearheading a monumental effort to bring it up to date. If you enjoy writing docs or editing, this is a great way to contribute to Rust! https://github.com/rust-lang-nursery/reference/issues/9 6 comments rust
- Strategies for Returning References in Rust https://bryce.fisher-fleig.org/blog/strategies-for-returning-references-in-rust/ 65 comments rust
- Learn You a Rust II - References and Borrowing http://pro.theta.eu.org/2016/03/18/lyar-borrows.html 6 comments rust
- C++'s rvalue `&&` references correspond to Rust's `&mut` http://discuss.rust-lang.org/t/thoughts-about-additional-built-in-pointer-types/959/3 7 comments rust
- D's proposal for escape-proof references, with some similarities to Rust's borrowed references http://wiki.dlang.org/dip69 19 comments rust
- NoOb - Rust Tutorial References Questions http://static.rust-lang.org/doc/master/tutorial.html 10 comments rust
- Can I return a reference from a tokio thread if I also return the value it's referencing? [Async Rust] https://docs.rs/mail-parser/latest/mail_parser/ 2 comments rust