sbahn
sbahn copied to clipboard
Remove `Future<Result<...>, ()>`
Future has an OK value and an Error value, returning a Result in a Future smells wrong. I think you should use and_then
instead of map
when the operation may fail?