cant believe this ran for like >1day and then crashed in the unwrap stages because i wasn't carefull to catch my err's :(

This commit is contained in:
2023-01-24 22:06:50 +01:00
parent 376e8c7321
commit 1615bcd0ed

View File

@@ -91,7 +91,7 @@ fn main() {
}
match looper.next().expect("euh").first() {
Ok(country) => h.country = country.answer.clone(),
Err(e) => println!("failed to get country for {}: {:?}", human.firstname.clone(), e)
Err(e) => println!("failed to get country for {}: {:?}", human.firstName.clone(), e)
}
match looper.next().expect("euh").first() {
Ok(job) => h.job = job.answer.clone(),