What do you dislike about Rust?

That is why ?. should be there.

Old code:

try!(try!(foo.bar()).baz())

“My code”:

try!(foo.bar()?.baz())
1 Like