pub type NoResult = Result<()>;
enum NoResult { Ok(()), Err(Error), }
Contains the success value
Contains the error value