pub struct AggregatedTarget {
pub pack: String,
pub handler: String,
pub target: String,
pub p50_us: u64,
pub p95_us: u64,
pub max_us: u64,
pub runs_seen: usize,
pub runs_total: usize,
}Expand description
Per-target stats across N runs.
Fields§
§pack: String§handler: String§target: String§p50_us: u64§p95_us: u64§max_us: u64§runs_seen: usizeHow many of the considered runs had this target. Surfaced because targets can appear/disappear across deploys; “p95 from 2/10 runs” is a different signal than “p95 from 10/10”.
runs_total: usizeTrait Implementations§
Source§impl Clone for AggregatedTarget
impl Clone for AggregatedTarget
Source§fn clone(&self) -> AggregatedTarget
fn clone(&self) -> AggregatedTarget
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AggregatedTarget
impl Debug for AggregatedTarget
Auto Trait Implementations§
impl Freeze for AggregatedTarget
impl RefUnwindSafe for AggregatedTarget
impl Send for AggregatedTarget
impl Sync for AggregatedTarget
impl Unpin for AggregatedTarget
impl UnsafeUnpin for AggregatedTarget
impl UnwindSafe for AggregatedTarget
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more