TelemetryResult

Type Alias TelemetryResult 

Source
pub type TelemetryResult<T> = Result<T, TelemetryError>;
Expand description

Result type for telemetry operations

Aliased Type§

pub enum TelemetryResult<T> {
    Ok(T),
    Err(TelemetryError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(TelemetryError)

Contains the error value