Conversation

"I wish we had try/catch in Rust" "We have try/catch at home" try/catch at home: if let Err(e) = || -> Result<(), Error> { code()?; Ok(()) }() { handle_error(e); }
24
425