pub type PingResult<T> = Result<T, PingError>;
Result type for ping operations
pub enum PingResult<T> { Ok(T), Err(PingError), }
Contains the success value
Contains the error value