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