Fault

typealias Fault<Error> = Outcome<Unit, Error>

Alias for Outcome used when only the error is useful — the success is irrelevant.

Equivalent to Result<Unit>, but retains the typed Error and the full Outcome API.