successOrNothing
inline fun <T : Any, E : Any> ClerkResult<T, E>.successOrNothing(body: (failure: ClerkResult.Failure<E>) -> Nothing): T
If ClerkResult.Success, returns the underlying T value. Otherwise, calls body with the failure, which can either throw an exception or return early (since this function is inline).