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