What is the right way to make a stack (or other dynamically changing vector thing) in Rust?

Google opens many links to old methods that are now removed from the language , but I can’t find a link on what to do for Rust 0.6.

I just implemented a linked list that I could easily redistribute onto the stack, but I would prefer to use the verified, reliable existing data structure from the standard library.

+4
source share
1 answer
+2
source

All Articles