考虑下面的代码-它编译并工作:
use std::rc::Rc;
use std::cell::RefCell;
use crate::Foo::{Something, Nothing};
enum Foo {
Nothing,
Something(i32),
}
fn main() {
let wrapped = Rc::new(RefCell::new(Foo::Nothing));
//....
match *wrapped.borrow() {
Something(x) => println!("{}", x),
Nothing => println!("Nothing"),
};
}现在我想匹配两个包装值,而不是只匹配一个:
use std::rc::Rc;
use std::cell::RefCell;
use crate::Foo::{Something, Nothing};
enum Foo {
Nothing,
Something(i32),
}
fn main() {
let wrapped1 = Rc::new(RefCell::new(Foo::Nothing));
let wrapped2 = Rc::new(RefCell::new(Foo::Nothing));
//....
match (*wrapped1.borrow(), *wrapped2.borrow()) {
(Something(x), Something(y)) => println!("{}, {}", x, y),
_ => println!("Nothing"),
};
}现在,这将给出编译错误:
error[E0507]: cannot move out of dereference of `std::cell::Ref<'_, Foo>`
--> src\main.rs:16:12
|
16 | match (*wrapped1.borrow(), *wrapped2.borrow()) {
| ^^^^^^^^^^^^^^^^^^ move occurs because value has type `Foo`, which does not implement the `Copy` trait
error[E0507]: cannot move out of dereference of `std::cell::Ref<'_, Foo>`
--> src\main.rs:16:32
|
16 | match (*wrapped1.borrow(), *wrapped2.borrow()) {
| ^^^^^^^^^^^^^^^^^^ move occurs because value has type `Foo`, which does not implement the `Copy` trait我不太理解这两个例子的语义之间的根本区别。为什么会发生这种情况?让第二个代码片段工作的正确方法是什么?
发布于 2019-09-14 02:03:36
match (*wrapped1.borrow(), *wrapped2.borrow()) {你在这里当场创建了一个元组。并且值被移动到新创建的元组中。不过,这是可行的:
use std::rc::Rc;
use std::cell::RefCell;
use crate::Foo::Something;
enum Foo {
Nothing,
Something(i32),
}
fn main() {
let wrapped1 = Rc::new(RefCell::new(Foo::Nothing));
let wrapped2 = Rc::new(RefCell::new(Foo::Nothing));
match (&*wrapped1.borrow(), &*wrapped2.borrow()) {
(Something(x), Something(y)) => println!("{}, {}", x, y),
_ => println!("Nothing"),
};
}https://stackoverflow.com/questions/57928209
复制相似问题