pub struct ShellInitAggregateView {
pub runs: usize,
pub requested_runs: usize,
pub profiling_enabled: bool,
pub profiles_dir: String,
pub rows: Vec<ShellInitAggregateRow>,
}Expand description
Display payload for --runs N.
Fields§
§runs: usizeHow many profiles were actually loaded (may be smaller than the requested N if there aren’t enough on disk yet).
requested_runs: usizeUser-requested N (echoed back so the renderer can say “showing 4 of last 10 requested”).
profiling_enabled: bool§profiles_dir: String§rows: Vec<ShellInitAggregateRow>Trait Implementations§
Source§impl Clone for ShellInitAggregateView
impl Clone for ShellInitAggregateView
Source§fn clone(&self) -> ShellInitAggregateView
fn clone(&self) -> ShellInitAggregateView
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 ShellInitAggregateView
impl Debug for ShellInitAggregateView
Auto Trait Implementations§
impl Freeze for ShellInitAggregateView
impl RefUnwindSafe for ShellInitAggregateView
impl Send for ShellInitAggregateView
impl Sync for ShellInitAggregateView
impl Unpin for ShellInitAggregateView
impl UnsafeUnpin for ShellInitAggregateView
impl UnwindSafe for ShellInitAggregateView
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