pub struct ProfilingData {
pub functions: Vec<FunctionStats>,
pub cache: CacheStats,
pub span_tree: Option<SpanTree>,
}Fields§
§functions: Vec<FunctionStats>§cache: CacheStats§span_tree: Option<SpanTree>Trait Implementations§
Source§impl Clone for ProfilingData
impl Clone for ProfilingData
Source§fn clone(&self) -> ProfilingData
fn clone(&self) -> ProfilingData
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 ProfilingData
impl Debug for ProfilingData
Source§impl Default for ProfilingData
impl Default for ProfilingData
Source§fn default() -> ProfilingData
fn default() -> ProfilingData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProfilingData
impl<'de> Deserialize<'de> for ProfilingData
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 ProfilingData
impl RefUnwindSafe for ProfilingData
impl Send for ProfilingData
impl Sync for ProfilingData
impl Unpin for ProfilingData
impl UnwindSafe for ProfilingData
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