Type Definition Fallible
failure
type Fallible<T> = Result<T, Error>;
A common result with an Error.
Error