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_stats_timeline(self) -> SubtrActorResult<ReplayStatsTimeline>
pub fn to_stats_timeline(&self) -> SubtrActorResult<ReplayStatsTimeline>
pub fn into_stats_timeline_value(self) -> SubtrActorResult<Value>
pub fn to_stats_timeline_value(&self) -> SubtrActorResult<Value>
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>
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<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§impl<Frame> Serialize for CapturedStatsData<Frame>where
Frame: Serialize,
impl<Frame> Serialize for CapturedStatsData<Frame>where
Frame: Serialize,
impl<Frame> StructuralPartialEq for CapturedStatsData<Frame>
Auto Trait Implementations§
impl<Frame> Freeze for CapturedStatsData<Frame>
impl<Frame> RefUnwindSafe for CapturedStatsData<Frame>where
Frame: RefUnwindSafe,
impl<Frame> Send for CapturedStatsData<Frame>where
Frame: Send,
impl<Frame> Sync for CapturedStatsData<Frame>where
Frame: Sync,
impl<Frame> Unpin for CapturedStatsData<Frame>where
Frame: Unpin,
impl<Frame> UnsafeUnpin for CapturedStatsData<Frame>
impl<Frame> UnwindSafe for CapturedStatsData<Frame>where
Frame: UnwindSafe,
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