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(()),
}