rust-managed icon indicating copy to clipboard operation
rust-managed copied to clipboard

A library that provides a way to logically own objects, whether or not heap allocation is available

Results 3 rust-managed issues
Sort by recently updated
recently updated
newest added

Hey all, I've used `managed` as inspiration for quite a few projects (here's [the latest one](https://github.com/jamesmunns/soupstone/blob/main/shared/soup-managed/src/lib.rs)) to allow for using slice/stack types (like `heapless`)/alloc types for things like arrays of...

A slot vec `SlotVec` is a linear container similar to a vector but the indices are invalidated when the element is removed, and can not incidentally refer to a valid...