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