Hacker News new | ask | show | jobs
by yyyk2 1308 days ago
Any sort of self-referential data structure, e.g. doubly linked lists.
1 comments

Those can be implemented in Rust very easily by wrapping the recursive reference in a (safe) pointer type such as Box or Rc.
Well, which one? And how does that interoperate with code that chose the other?