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