Hacker News new | ask | show | jobs
by unionpivo 2019 days ago
You have no choice in rust. It wont compile unless you handle all error conditions.

You get Result< Data T, Error>. And you have to handle Error condition (usually kick it up stack, but it has to be handled somewhere) for it to compile.

What rust wouldn't prevent you from is forgetting to check for revocation, or doing it wrong.