We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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(()) }