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