Skip to content

Instantly share code, notes, and snippets.

@anacrolix
Created November 20, 2019 03:00
Show Gist options
  • Save anacrolix/50a5714744c060a7a920b829f9e08a64 to your computer and use it in GitHub Desktop.
Save anacrolix/50a5714744c060a7a920b829f9e08a64 to your computer and use it in GitHub Desktop.
macro_rules! handle {
($value:expr, $err:ident,$onerr:expr) => {
match $value {
Ok(ok) => ok,
Err($err) => $onerr,
}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment