if foo.is_none() { return; } let foo = foo.unwrap()
let Some(foo_unwrapped) = foo else { return; }
let foo_unwrapped = match foo { Some(foo_unwrapped) => foo_unwrapped, None => return, };