Pretty sure Rust programmers just never
2024-12-30 01:25:02.845992+01 by Dan Lyke 0 comments
Pretty sure Rust programmers just never deal with recursive structures. Object has a Vec<Rc<dyn Foo>> in it, after adding an Rc of it to one or more other object's Vec, I want to be able to add to its Vec, and danged if I can figure out the magic incantation.
(Yes, I know I'm gonna have to do careful handling to free this, I'm good with that.)