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