pub type UnitResult = Result<()>;
A result that, if ok, contains nothing, and otherwise contains an exr error.
enum UnitResult { Ok(()), Err(Error), }
Contains the success value
Contains the error value