pub struct PerfSnapshot {
pub entries: Vec<PerfEntry>,
pub total: u64,
}Expand description
PerfSnapshot Paginated view of perf counters keyed by label.
Fields§
§entries: Vec<PerfEntry>§total: u64Trait Implementations§
Source§impl CandidType for PerfSnapshot
impl CandidType for PerfSnapshot
Source§impl Clone for PerfSnapshot
impl Clone for PerfSnapshot
Source§fn clone(&self) -> PerfSnapshot
fn clone(&self) -> PerfSnapshot
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 PerfSnapshot
impl Debug for PerfSnapshot
Source§impl<'de> Deserialize<'de> for PerfSnapshot
impl<'de> Deserialize<'de> for PerfSnapshot
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PerfSnapshot
impl RefUnwindSafe for PerfSnapshot
impl Send for PerfSnapshot
impl Sync for PerfSnapshot
impl Unpin for PerfSnapshot
impl UnwindSafe for PerfSnapshot
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