fallible<T> function

FromRequestParts<Result<T, Rejection>> fallible<T>(
  1. FromRequestParts<T> inner
)

Hands inner's rejection to the handler instead of short-circuiting.

Implementation

FromRequestParts<Result<T, Rejection>> fallible<T>(
  FromRequestParts<T> inner,
) =>
    FallibleExtractable<T>(inner);