pub type Result<T> = Result<T, PypiError>;
Result type alias for PyPI operations.
pub enum Result<T> { Ok(T), Err(PypiError), }
Contains the success value
Contains the error value