pub struct PlatformValues {Show 16 fields
pub timestamp: Option<String>,
pub ttfb_origin_p25_us: Option<f32>,
pub ttfb_origin_p50_us: Option<f32>,
pub ttfb_origin_p75_us: Option<f32>,
pub ttfb_origin_p95_us: Option<f32>,
pub ttfb_origin_p99_us: Option<f32>,
pub ttfb_shield_p25_us: Option<f32>,
pub ttfb_shield_p50_us: Option<f32>,
pub ttfb_shield_p75_us: Option<f32>,
pub ttfb_shield_p95_us: Option<f32>,
pub ttfb_shield_p99_us: Option<f32>,
pub ttfb_edge_p25_us: Option<f32>,
pub ttfb_edge_p50_us: Option<f32>,
pub ttfb_edge_p75_us: Option<f32>,
pub ttfb_edge_p95_us: Option<f32>,
pub ttfb_edge_p99_us: Option<f32>,
}Expand description
PlatformValues : The results of the query, optionally filtered and grouped over the requested timespan.
Fields§
§timestamp: Option<String>Timestamp of the metrics data point.
ttfb_origin_p25_us: Option<f32>25th percentile of time to first byte from origin, in microseconds.
ttfb_origin_p50_us: Option<f32>50th percentile of time to first byte from origin, in microseconds.
ttfb_origin_p75_us: Option<f32>75th percentile of time to first byte from origin, in microseconds.
ttfb_origin_p95_us: Option<f32>95th percentile of time to first byte from origin, in microseconds.
ttfb_origin_p99_us: Option<f32>99th percentile of time to first byte from origin, in microseconds.
ttfb_shield_p25_us: Option<f32>25th percentile of time to first byte from shield, in microseconds.
ttfb_shield_p50_us: Option<f32>50th percentile of time to first byte from shield, in microseconds.
ttfb_shield_p75_us: Option<f32>75th percentile of time to first byte from shield, in microseconds.
ttfb_shield_p95_us: Option<f32>95th percentile of time to first byte from shield, in microseconds.
ttfb_shield_p99_us: Option<f32>99th percentile of time to first byte from shield, in microseconds.
ttfb_edge_p25_us: Option<f32>25th percentile of time to first byte from edge, in microseconds.
ttfb_edge_p50_us: Option<f32>50th percentile of time to first byte from edge, in microseconds.
ttfb_edge_p75_us: Option<f32>75th percentile of time to first byte from edge, in microseconds.
ttfb_edge_p95_us: Option<f32>95th percentile of time to first byte from edge, in microseconds.
ttfb_edge_p99_us: Option<f32>99th percentile of time to first byte from edge, in microseconds.
Implementations§
Source§impl PlatformValues
impl PlatformValues
Sourcepub fn new() -> PlatformValues
pub fn new() -> PlatformValues
The results of the query, optionally filtered and grouped over the requested timespan.
Trait Implementations§
Source§impl Clone for PlatformValues
impl Clone for PlatformValues
Source§fn clone(&self) -> PlatformValues
fn clone(&self) -> PlatformValues
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more