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