pub struct GroupedProfile {
pub groups: Vec<ProfileGroup>,
pub user_total_us: u64,
pub framing_us: u64,
pub total_us: u64,
}Expand description
Aggregate one profile by (pack, handler) for the rendered table.
Fields§
§groups: Vec<ProfileGroup>§user_total_us: u64§framing_us: u64§total_us: u64Trait Implementations§
Source§impl Clone for GroupedProfile
impl Clone for GroupedProfile
Source§fn clone(&self) -> GroupedProfile
fn clone(&self) -> GroupedProfile
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 GroupedProfile
impl Debug for GroupedProfile
Auto Trait Implementations§
impl Freeze for GroupedProfile
impl RefUnwindSafe for GroupedProfile
impl Send for GroupedProfile
impl Sync for GroupedProfile
impl Unpin for GroupedProfile
impl UnsafeUnpin for GroupedProfile
impl UnwindSafe for GroupedProfile
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