Comment on A guide to closures in RustparentComments−bsder3yThis is a key thing to know, actually.Closures in Rust are different from named functions and that can trip you up.Closures in Rust also close over lifetime information in ways that named functions cannot do. This confused me for quite a while.
Comments
This is a key thing to know, actually.
Closures in Rust are different from named functions and that can trip you up.
Closures in Rust also close over lifetime information in ways that named functions cannot do. This confused me for quite a while.