this post was submitted on 18 Jun 2023
14 points (93.8% liked)
Rust
6128 readers
59 users here now
Welcome to the Rust community! This is a place to discuss about the Rust programming language.
Wormhole
Credits
- The icon is a modified version of the official rust logo (changing the colors to a gradient and black background)
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Passing around references works, but then you have to deal with ownership issues. Often the motivation for cloning a
Vec
orString
is just to avoid dealing with lifetimes and to get ownership, but the mutability isn’t actually required. In these situations I think the video’s recommendation to use anArc
is actually a good one.