Struct boxcars::TickMark [] [src]

pub struct TickMark<'a> {
    pub description: Cow<'a, str>,
    pub frame: i32,
}

In Rocket league replays, there are tickmarks that typically represent a significant event in the game (eg. a goal). The tick mark is placed before the event happens so there is a ramp-up time. For instance, a tickmark could be at frame 396 for a goal at frame 441. At 30 fps, this would be 1.5 seconds of ramp up time.

Fields

Trait Implementations

impl<'a> PartialEq for TickMark<'a>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<'a> Debug for TickMark<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> Clone for TickMark<'a>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more