https://pantsbuild.org/ logo
a

average-vr-56795

10/17/2017, 3:27 PM
Ok, I need to actually work out an idiomatic way for us to do Results, because I'm getting sick of writing the code:
Copy code
match foo() {
  Ok(_) -> {},
  Err(err) -> return Err(err.description().to_string()),
}