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