How would you set a breakpoint on the error return case?
Inline breakpoint, the same way you set a breakpoint on an expression in any language
You wouldn't. Rust's ? operator doesn't permit that either. If you need to put a breakpoint there, put a line break there.
Inline breakpoint, the same way you set a breakpoint on an expression in any language