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