async Outcome
fun <T> CoroutineScope.asyncOutcome(block: suspend CoroutineScope.() -> Outcome<T, Any>): Deferred<Outcome<T, Any>>
Creates a deferred result that does not cancel the parent upon failure but instead returns an Outcome. Best used with awaitOutcome.