let Ok(foo) = do_something() else {
// Do some error handling, maybe log a warning, maybe skip this item and continue...
};
You must log in or register to comment.
let Ok(foo) = do_something() else {
// Do some error handling, maybe log a warning, maybe skip this item and continue...
};