pub type Result<T> = Result<T, PptError>;
Result type alias for ppt-rs operations
pub enum Result<T> { Ok(T), Err(PptError), }
Contains the success value
Contains the error value