Don't forget that everybody is different! These toots are just suggestions - take the ones you think might help and leave the rest. Be kind to yourself.
@feoh It kinda is, with the whole references thing... That's why I thought I could do it with weak refs. But then I realized you needed an RC to make an rc::Weak... And it leads to a whole new heap of complications.
@feoh I'm still mostly just playing with Rust. I tried to see if I could use Rc or rc::Weak to make a "circular" data structure, where an object owns its "children" and then each child has a reference to its "parent".
Wow, I haven't practiced #RustLang in a while and re-growing pains are kinda killing me. Doesn't help that I tried to make something that's apparently impossible to do in safe Rust.