pub struct FlameGraphData {
pub nodes: Vec<FlameGraphNode>,
pub total_samples: u64,
pub generated_at: DateTime<Utc>,
pub config: FlameGraphConfig,
}
Expand description
Flame graph data
Fields§
§nodes: Vec<FlameGraphNode>
Flame graph nodes
total_samples: u64
Total samples
generated_at: DateTime<Utc>
Generation timestamp
config: FlameGraphConfig
Configuration used
Trait Implementations§
Source§impl Clone for FlameGraphData
impl Clone for FlameGraphData
Source§fn clone(&self) -> FlameGraphData
fn clone(&self) -> FlameGraphData
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 FlameGraphData
impl Debug for FlameGraphData
Source§impl<'de> Deserialize<'de> for FlameGraphData
impl<'de> Deserialize<'de> for FlameGraphData
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 FlameGraphData
impl RefUnwindSafe for FlameGraphData
impl Send for FlameGraphData
impl Sync for FlameGraphData
impl Unpin for FlameGraphData
impl UnwindSafe for FlameGraphData
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