fallible<T> function
Hands inner's rejection to the handler instead of short-circuiting.
Implementation
FromRequestParts<Result<T, Rejection>> fallible<T>(
FromRequestParts<T> inner,
) =>
FallibleExtractable<T>(inner);
Hands inner's rejection to the handler instead of short-circuiting.
FromRequestParts<Result<T, Rejection>> fallible<T>(
FromRequestParts<T> inner,
) =>
FallibleExtractable<T>(inner);