pub struct DynamicReplayStatsTimeline {
pub config: StatsTimelineConfig,
pub replay_meta: ReplayMeta,
pub timeline_events: Vec<TimelineEvent>,
pub fifty_fifty_events: Vec<FiftyFiftyEvent>,
pub rush_events: Vec<RushEvent>,
pub speed_flip_events: Vec<SpeedFlipEvent>,
pub frames: Vec<DynamicReplayStatsFrame>,
}Fields§
§config: StatsTimelineConfig§replay_meta: ReplayMeta§timeline_events: Vec<TimelineEvent>§fifty_fifty_events: Vec<FiftyFiftyEvent>§rush_events: Vec<RushEvent>§speed_flip_events: Vec<SpeedFlipEvent>§frames: Vec<DynamicReplayStatsFrame>Implementations§
Source§impl DynamicReplayStatsTimeline
impl DynamicReplayStatsTimeline
pub fn frame_by_number( &self, frame_number: usize, ) -> Option<&DynamicReplayStatsFrame>
Trait Implementations§
Source§impl Clone for DynamicReplayStatsTimeline
impl Clone for DynamicReplayStatsTimeline
Source§fn clone(&self) -> DynamicReplayStatsTimeline
fn clone(&self) -> DynamicReplayStatsTimeline
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 DynamicReplayStatsTimeline
impl Debug for DynamicReplayStatsTimeline
impl StructuralPartialEq for DynamicReplayStatsTimeline
Auto Trait Implementations§
impl Freeze for DynamicReplayStatsTimeline
impl RefUnwindSafe for DynamicReplayStatsTimeline
impl Send for DynamicReplayStatsTimeline
impl Sync for DynamicReplayStatsTimeline
impl Unpin for DynamicReplayStatsTimeline
impl UnsafeUnpin for DynamicReplayStatsTimeline
impl UnwindSafe for DynamicReplayStatsTimeline
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