We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
This does not generate a deprecation warning, but will if the try! call is removed.
try!
extern crate url; fn foo() -> Result<(), ()> { try!(url::decode_component("sdf").map_err(|_| ())); Ok(()) }