Cannot move out of captured outer variable in an Fn closure

前端 未结 1 368
伪装坚强ぢ
伪装坚强ぢ 2021-01-11 17:17
fn make_adder(x: String) -> Box String> {
    Box::new(|| x)
}

fn main() {
    make_adder(String::from(\"a\"));
}

This results

相关标签:
1条回答
  • 2021-01-11 17:54

    A closure which implements Fn can be called multiple times (the receiver parameter is &self, an immutable reference to the closure):

    fn call_multiple_times<F: Fn(u8) -> i32>(f: F) {
        // Works! We can call the closure mutliple times
        let a = f(1);
        let b = f(27);
        let c = f(31);
    }
    

    This means that with your closure Fn() -> String, you could do this:

    let s1 = adder();
    let s2 = adder();
    

    Now you would have two Strings although you only started with one! Magic? You can of course get another string by cloning the original string, but we don't do that here. So it clearly can't work.


    You can fix that in two ways. Either you don't need your closure to be called multiple times. In that case you can simply change Fn to FnOnce (a less demanding trait). An FnOnce closure can only be called ... well ... once. This works:

    fn make_adder(x: String) -> Box<FnOnce() -> String> {
        Box::new(|| x)
    }
    

    On the other hand, maybe you want the closure to be called multiple times and always want to return a new clone of the string. You can do that like this:

    fn make_adder(x: String) -> Box<Fn() -> String> {
        Box::new(move || x.clone())
    }
    

    Here we added a .clone() call (since in Rust, deep clones are never implicit!) and we added the move keyword. The latter is necessary to explicitly move the string x into the closure, not just borrow it.

    0 讨论(0)
提交回复
热议问题