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