pub struct CapturedStatsData<Frame> {
pub replay_meta: ReplayMeta,
pub config: Map<String, Value>,
pub modules: Map<String, Value>,
pub frames: Vec<Frame>,
}Fields§
§replay_meta: ReplayMeta§config: Map<String, Value>§modules: Map<String, Value>§frames: Vec<Frame>Implementations§
Source§impl CapturedStatsData<StatsSnapshotFrame>
impl CapturedStatsData<StatsSnapshotFrame>
pub fn into_legacy_replay_stats_timeline( self, ) -> SubtrActorResult<ReplayStatsTimeline>
pub fn into_stats_timeline(self) -> SubtrActorResult<ReplayStatsTimeline>
use into_legacy_replay_stats_timeline for full partial-sum snapshots, or StatsTimelineEventCollector for compact event-backed timelines
pub fn into_legacy_replay_stats_timeline_with_progress<F>( self, frame_interval: usize, on_progress: F, ) -> SubtrActorResult<ReplayStatsTimeline>
pub fn into_stats_timeline_with_progress<F>( self, frame_interval: usize, on_progress: F, ) -> SubtrActorResult<ReplayStatsTimeline>
use into_legacy_replay_stats_timeline_with_progress for full partial-sum snapshots, or StatsTimelineEventCollector for compact event-backed timelines
pub fn to_legacy_replay_stats_timeline( &self, ) -> SubtrActorResult<ReplayStatsTimeline>
pub fn to_stats_timeline(&self) -> SubtrActorResult<ReplayStatsTimeline>
use to_legacy_replay_stats_timeline for full partial-sum snapshots, or StatsTimelineEventCollector for compact event-backed timelines
pub fn into_legacy_stats_timeline_value(self) -> SubtrActorResult<Value>
pub fn into_stats_timeline_value(self) -> SubtrActorResult<Value>
use into_legacy_stats_timeline_value for full partial-sum snapshots, or StatsTimelineEventCollector for compact event-backed timelines
pub fn to_legacy_stats_timeline_value(&self) -> SubtrActorResult<Value>
pub fn to_stats_timeline_value(&self) -> SubtrActorResult<Value>
use to_legacy_stats_timeline_value for full partial-sum snapshots, or StatsTimelineEventCollector for compact event-backed timelines
Source§impl CapturedStatsData<ReplayStatsFrame>
impl CapturedStatsData<ReplayStatsFrame>
pub fn into_legacy_replay_stats_timeline( self, ) -> SubtrActorResult<ReplayStatsTimeline>
pub fn into_replay_stats_timeline(self) -> SubtrActorResult<ReplayStatsTimeline>
use into_legacy_replay_stats_timeline for full partial-sum snapshots, or StatsTimelineEventCollector for compact event-backed timelines
Trait Implementations§
Source§impl<Frame: Clone> Clone for CapturedStatsData<Frame>
impl<Frame: Clone> Clone for CapturedStatsData<Frame>
Source§fn clone(&self) -> CapturedStatsData<Frame>
fn clone(&self) -> CapturedStatsData<Frame>
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl<Frame: Debug> Debug for CapturedStatsData<Frame>
impl<Frame: Debug> Debug for CapturedStatsData<Frame>
Source§impl<Frame: PartialEq> PartialEq for CapturedStatsData<Frame>
impl<Frame: PartialEq> PartialEq for CapturedStatsData<Frame>
Source§fn eq(&self, other: &CapturedStatsData<Frame>) -> bool
fn eq(&self, other: &CapturedStatsData<Frame>) -> bool
self and other values to be equal, and is used by ==.