Rust 团队很高兴宣布 Rust 的新版本 1.26.2。Rust 是一种系统编程语言,专注于安全、速度和并发。
如果您之前通过 rustup 安装了 Rust,获取 Rust 1.26.2 就像
$ rustup update stable
如果您还没有,您可以从我们网站上的相应页面获取 rustup
,并查看 GitHub 上1.26.2 的详细发布说明。
1.26.2 稳定版中的内容
此补丁版本修复了 match
表达式借用检查器验证中的一个错误。此错误是在 1.26.0 中引入的,当时match 语法糖被稳定化。具体来说,它允许代码同时对 bar
路径进行两次可变借用。
let mut foo = Some("foo".to_string());
let bar = &mut foo;
match bar {
Some(baz) => {
bar.take(); // Should not be permitted, as baz has a unique reference to the bar pointer.
},
None => unreachable!(),
}
1.26.2 将使用此错误消息拒绝上述代码
error[E0499]: cannot borrow `*bar` as mutable more than once at a time
--> src/main.rs:6:9
|
5 | Some(baz) => {
| --- first mutable borrow occurs here
6 | bar.take(); // Should not be permitted, as baz has a ...
| ^^^ second mutable borrow occurs here
...
9 | }
| - first borrow ends here
error: aborting due to previous error
核心团队决定发布一个小版本,以最大程度地减少此错误在 Rust 编译器中存在于稳定版编译器中的时间窗口。