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