"Has anyone else here written..." <- > <@jamesmunns:beeper.com> Has anyone else here written some kind of data structure where you wish you could be "generic" over whether that data structure is on the heap (on desktop) or in static(desktop or embedded)? > > I run into this a lot for queues/channels mostly (bbqueue, some of the async stuff in mnemos), and trying to write a library that structures how to do this in a reasonably safe way. > > If you have written (or tried to write) a data structure like this, could you lemme know? Interested in getting feedback on it at some point The only place I've seen that work is in the `managed` crate, but AFAIK its now seems abandoned. It also had its own quirks which made it a lil tricky to use