Rust Just Got Some Changes
2 min readAug 12, 2022
Welcome back! Rust is an awesome programming language with a ton of capability, if you’re new to this language, check out the link below to learn more about it:
Rust just ended up getting a pretty big update, this is Rust 1.63! if you want to check out their release log, here is a link to it:
Let’s take a look at some of the changes with this update!
Rust Ownership For Raw Files
This new version of Rust brings wrapper types which will improve our code!
Scoped Threads
This new update of Rust gives us the ability of using scoped threads, these allow us to spawn a thread from the local stack frame! Here is an example:
let mut a = vec![1, 2, 3]; let mut x = 0; std::thread::scope(|s| {…