Option / Result methods
Option: is_some is_none unwrap unwrap_or expect
Result: is_ok is_err unwrap unwrap_or unwrap_err expect
plus the ? operator, which early-returns the None/Err and composes across the host boundary.
Option / Result methods
Option: is_some is_none unwrap unwrap_or expect
Result: is_ok is_err unwrap unwrap_or unwrap_err expect
plus the ? operator, which early-returns the None/Err and composes across the host boundary.