resultish 0.1.5

A `Resultish` represents success (`Ok`), error (`Err`), or `Both`.
Documentation

resultish

A Resultish represents success (Ok), error (Err), or Both. It can be converted into a Result:

  • leniently, where Both is mapped to Ok, and the error value is discarded.
  • strictly, where Both is mapped to Err, and the success value is discarded.