type PitResult<T> = Result<T, PitError>;
enum PitResult<T> { Ok(T), Err(PitError), }
Contains the success value
Contains the error value