pub type Fallible<T> = Result<T, Error>;
A common result with an Error.
Error
enum Fallible<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value