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