pub type Result<T> = Result<T, PpsdError>;
Result type for ppsd operations.
pub enum Result<T> { Ok(T), Err(PpsdError), }
Contains the success value
Contains the error value