pub type PyResult<T> = Result<T, PyErr>;
Represents the result of a Python call.
enum PyResult<T> { Ok(T), Err(PyErr), }
Contains the success value
Contains the error value