pub struct AggregatedView {
pub runs: usize,
pub targets: Vec<AggregatedTarget>,
}Expand description
Aggregate output, one row per (pack, handler, target) keyed by all
the profiles passed in.
Fields§
§runs: usize§targets: Vec<AggregatedTarget>Trait Implementations§
Source§impl Clone for AggregatedView
impl Clone for AggregatedView
Source§fn clone(&self) -> AggregatedView
fn clone(&self) -> AggregatedView
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 AggregatedView
impl Debug for AggregatedView
Auto Trait Implementations§
impl Freeze for AggregatedView
impl RefUnwindSafe for AggregatedView
impl Send for AggregatedView
impl Sync for AggregatedView
impl Unpin for AggregatedView
impl UnsafeUnpin for AggregatedView
impl UnwindSafe for AggregatedView
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