什么时候Rust编译器不能证明借用是不相交的?

问题描述 投票:1回答:1

它说,在section 3.2 of the Nomicon的“活力”标题下

然而,通常情况下Rust并不足以证明多个借用是不相交的。

什么是Rust编译器无法证明它们是不相交的示例?这会发生在元组结构中吗?

rust borrow-checker
1个回答
3
投票

关键在于上一句话:

Rust明确地允许[重新借用多个可变引用]以使用不相交的struct字段来完成,因为可以静态地证明不相交

在这种情况之外,编译器不能说两个借用是不相交的。实际上,这意味着编译器无法判断由函数调用产生的借用是否会不相交。

struct Thing {
    a: i32,
    b: i32,
}
fn example_works(thing: &mut Thing) {
    let a = &mut thing.a;
    let b = &mut thing.b;
}
fn get_a(thing: &mut Thing) -> &mut i32 {
    &mut thing.a
}

fn get_b(thing: &mut Thing) -> &mut i32 {
    &mut thing.b
}

fn example_doesnt_work(thing: &mut Thing) {
    let a = get_a(thing);
    let b = get_b(thing);
    println!("{}, {}", a, b);
}
error[E0499]: cannot borrow `*thing` as mutable more than once at a time
  --> src/lib.rs:26:19
   |
25 |     let a = get_a(thing);
   |                   ----- first mutable borrow occurs here
26 |     let b = get_b(thing); // cannot borrow `*thing` as mutable more than once at a time
   |                   ^^^^^ second mutable borrow occurs here
27 |     println!("{}, {}", a, b);
   |                        - first borrow later used here

这会发生在元组结构中吗?

不是特别因为它是一个元组结构,但是,它可能出于同样的原因。如果从函数调用中获得借用,则会遇到与“传统”结构相同的问题。

© www.soinside.com 2019 - 2024. All rights reserved.