Let's say I have an async fn
which does some processing, and that processing entails handling Result
types.
These Results of course call map
, and_then
, etc.
However, if I need to do more async stuff inside these combinators, it fails to compile.
Am I missing something fundamental here? Tried wrapping stuff in async blocks, fought the compiler a few ways for a bit of time before giving up and doing regular pattern matching.