Skip to main content

EdgeTransportMeasurement

Type Alias EdgeTransportMeasurement 

pub type EdgeTransportMeasurement = Result<Duration, ()>;
Expand description

The result of a transport-level probe over a transport path segment.

Contains the measured latency on success, or a unit error on failure.

Aliased Type§

pub enum EdgeTransportMeasurement {
    Ok(Duration),
    Err(()),
}

Variants§

§1.0.0

Ok(Duration)

Contains the success value

§1.0.0

Err(())

Contains the error value