How can I specify lifetimes in a for loop? I'm trying to multithread ports, but keep running into lifetime issues.
pub fn connect_server(&self) {
for x in 58350..58360 {
thread::spawn(|| {
match TcpListener::bind(self.local_ip.to_string() + &x.to_string()) {
Ok(socket) => {
for stream in socket.accept() {
println!("received packet: {:?}", stream);
}
},
Err(error) => panic!("Failed to connect socket: {}", error)
}
});
thread::sleep(Duration::from_millis(1));
}
}
error:
borrowed data escapes outside of associated function
`self` escapes the associated function body here
Generate the bind address outside the
thread::spawn
closure, and use amove
closure rather than capturing by reference: