What does “borrowed data cannot be stored outside of its closure” mean?

Multi tool use
Multi tool use


What does “borrowed data cannot be stored outside of its closure” mean?



When compiling the following code:


fn main() {
let mut fields = Vec::new();
let pusher = &mut |a: &str| {
fields.push(a);
};
}



The compiler gives me the following error:


error: borrowed data cannot be stored outside of its closure
--> src/main.rs:4:21
|
3 | let pusher = &mut |a: &str| {
| ------ --------- ...because it cannot outlive this closure
| |
| borrowed data cannot be stored into here...
4 | fields.push(a);
| ^ cannot be stored outside of its closure



What does this error mean, and how can I fix my code?




1 Answer
1



It means exactly what it says: that the data you are borrowing only lives for the duration of the closure. Attempting to store it outside of the closure would expose the code to memory unsafety.



This arises because the inferred lifetime of the closure's argument has no relation to the lifetimes stored in the Vec.


Vec



Generally, this isn't a problem you experience because something has caused more type inference to happen. In this case, you can add a type to fields and remove it from the closure:


fields


let mut fields: Vec<&str> = Vec::new();
let pusher = |a| fields.push(a);





Oh, thank you! I would have expected an error telling me the borrowchk does not have enough info.
– Valentin Lorentz
Jun 30 at 22:40





@ValentinLorentz FWIW, I've never seen this particular error before, and this is the first SO question about it. It's possible this is a brand new error. You may wish to file a bug with your case and the error message and say that it wasn't helpful. The Rust contributors strive to have useful error messages.
– Shepmaster
Jul 1 at 3:36






By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

IyjGUWcJ0,TFl368 W ndt,0mNlnZS,ukuuzYG pOwVwp3nlMEMX5X4x2 SvFf,NqQo
SJE1GQr

Popular posts from this blog

PySpark - SparkContext: Error initializing SparkContext File does not exist

django NoReverseMatch Exception

List of Kim Possible characters