pub type Outcome<S, E> = Outcome<S, (Status, E), ()>;
Type alias for the Outcome of a FromRequest conversion.
Outcome
FromRequest
enum Outcome<S, E> { Success(S), Failure((Status, E)), Forward(()), }
Contains the success value.
Contains the failure error value.
Contains the value to forward on.