so if i want a data structure to have an (immutable) reference to some part of itself in rust, my options are.. uh. raw pointers? or making everything Rc’s? this feels like something that *should* be doable with references, but i guess i understand why the compiler cant guarantee it

Comments