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