withTimeoutOrOutcome

suspend fun <T, E> withTimeoutOrOutcome(timeoutMillis: Long, timeoutError: E, block: suspend CoroutineScope.() -> Outcome<T, E>): Outcome<T, E>
suspend fun <T> withTimeoutOrOutcome(timeoutMillis: Long, block: suspend CoroutineScope.() -> Outcome<T, Any>): Outcome<T, Any>