pub struct ProfileSummary {
pub node_count: usize,
pub total_invokes: u64,
pub by_status: Vec<ProfileSummaryStatus>,
pub hot_nodes: Vec<ProfileSummaryNode>,
}Expand description
ProfileSummary data container.
Fields§
§node_count: usizenode_count field for node count.
total_invokes: u64total_invokes field for total invokes.
by_status: Vec<ProfileSummaryStatus>by_status field for by status.
hot_nodes: Vec<ProfileSummaryNode>hot_nodes field for hot nodes.
Trait Implementations§
Source§impl Clone for ProfileSummary
impl Clone for ProfileSummary
Source§fn clone(&self) -> ProfileSummary
fn clone(&self) -> ProfileSummary
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 ProfileSummary
impl Debug for ProfileSummary
Source§impl PartialEq for ProfileSummary
impl PartialEq for ProfileSummary
impl Eq for ProfileSummary
impl StructuralPartialEq for ProfileSummary
Auto Trait Implementations§
impl Freeze for ProfileSummary
impl RefUnwindSafe for ProfileSummary
impl Send for ProfileSummary
impl Sync for ProfileSummary
impl Unpin for ProfileSummary
impl UnsafeUnpin for ProfileSummary
impl UnwindSafe for ProfileSummary
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.