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