gpt4 book ai didi

rust - FnOnce 内部枚举 : cannot move out of borrowed content

转载 作者:行者123 更新时间:2023-11-29 07:50:20 26 4
gpt4 key购买 nike

我是 Rust 的新手,在所有权/借用方面仍然存在一些问题。在这种情况下,我想将 FnOnce 存储在枚举中,然后稍后从另一个线程调用它。我尝试了很多不同的变体,但总是卡在某个地方。这是我目前拥有的简化变体:

#![feature(fnbox)]

use std::sync::{Arc, Mutex};
use std::boxed::{Box, FnBox};

enum Foo<T> {
DoNothing,
CallFunction(Box<FnBox(&T) + Send>)
}

struct FooInMutex<T> {
foo: Arc<Mutex<Foo<T>>>
}

impl<T> FooInMutex<T> {
fn put_fn(&self, f: Box<FnBox(&T)+Send>) {
let mut foo = self.foo.lock().unwrap();
let mut new_foo : Foo<T>;
match *foo {
Foo::DoNothing =>
new_foo = Foo::CallFunction(f),
_ =>
new_foo = Foo::DoNothing
}
*foo = new_foo;
}

fn do_it(&self, t: T) {
let mut foo = self.foo.lock().unwrap();
let mut new_foo : Foo<T>;
match *foo {
Foo::CallFunction(ref mut f) => {
//f(&t)
f.call_box((&t,));
new_foo = Foo::DoNothing;
}
_ =>
panic!("...")
}
*foo = new_foo;
}
}

#[test]
fn it_works() {
let x = FooInMutex { foo: Arch::new(Mutex::new(Foo::DoNothing)) };

x.put_fn(Box::new(|| panic!("foo")));
x.do_it();
}

我使用“rustc 1.4.0-nightly (e35fd7481 2015-08-17)”。错误信息:

src/lib.rs:35:17: 35:18 error: cannot move out of borrowed content
src/lib.rs:35 f.call_box((&t,));
^

据我了解,f 由互斥锁中的枚举所有,我仅通过 *foo 借用它。但是为了调用 f,我需要将其移出。但如何做到这一点?或者我还需要更改什么才能使这个示例起作用?

最佳答案

std::mem::replace 是您应该在那里使用的内容,如下所示:

use std::mem;



fn do_it(&self, t: T) {
match mem::replace(self.foo.lock().unwrap(), Foo::DoNothing) {
Foo::CallFunction(f) => {
f.call_box((&t,));
}
_ => panic!("...")
}
}

关于rust - FnOnce 内部枚举 : cannot move out of borrowed content,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32236430/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com