struct ImmutRef<'a, T>(&'a T);
struct MutRef<'a, T>(&'a mut T);
struct Foo;
impl Foo {
fn upgrade_ref(&mut self, _: ImmutRef<Self>) -> MutRef<Self> {
MutRef(self)
}
}
let mut foo = Foo;
let immut_ref = ImmutRef(&foo);
let mut_ref = foo.upgrade_ref(immut_ref);
此代码无法编译。
error[E0502]: cannot borrow `foo` as mutable because it is also borrowed as immutable
--> src/main.rs:63:16
|
62 | let immut_ref = ImmutRef(&foo);
| ---- immutable borrow occurs here
63 | let mut_ref = foo.upgrade_ref(immut_ref);
| ^^^^-----------^^^^^^^^^^^
| | |
| | immutable borrow later used by call
| mutable borrow occurs here
我得到上面的错误代替。
是的,immut_ref
不可变地借用foo
,但是当我们调用foo.upgrade_ref
时,它被移动了。因此,不再有任何对foo
的引用,我应该能够得到一个对foo
的可变引用。
为什么不能编译?
1条答案
按热度按时间ujv3wf0j1#
upgrade_ref
接受&mut self
和ImmutRef<Self>
,你试图同时传递&mut foo
和&foo
,但是不可变引用和可变引用不能同时存在。