book/redirects/choosing-your-guarantees.md

735 B
Raw Permalink Blame History

% Choosing your Guarantees

There is a new edition of the book and this is an old link.

Smart pointers are data structures that act like a pointer, but they also have additional metadata and capabilities. The different smart pointers defined in Rusts standard library provide extra functionality beyond what references provide.

let b = Box::new(5);
println!("b = {b}");

Here are the relevant sections in the new and old books: