pub struct BallCarryEvent {
pub player_id: PlayerId,
pub is_team_0: bool,
pub start_frame: usize,
pub end_frame: usize,
pub start_time: f32,
pub end_time: f32,
pub duration: f32,
pub straight_line_distance: f32,
pub path_distance: f32,
pub average_horizontal_gap: f32,
pub average_vertical_gap: f32,
pub average_speed: f32,
}Fields§
§player_id: PlayerId§is_team_0: bool§start_frame: usize§end_frame: usize§start_time: f32§end_time: f32§duration: f32§straight_line_distance: f32§path_distance: f32§average_horizontal_gap: f32§average_vertical_gap: f32§average_speed: f32Trait Implementations§
Source§impl Clone for BallCarryEvent
impl Clone for BallCarryEvent
Source§fn clone(&self) -> BallCarryEvent
fn clone(&self) -> BallCarryEvent
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 BallCarryEvent
impl Debug for BallCarryEvent
Source§impl PartialEq for BallCarryEvent
impl PartialEq for BallCarryEvent
Source§impl Serialize for BallCarryEvent
impl Serialize for BallCarryEvent
impl StructuralPartialEq for BallCarryEvent
Auto Trait Implementations§
impl Freeze for BallCarryEvent
impl RefUnwindSafe for BallCarryEvent
impl Send for BallCarryEvent
impl Sync for BallCarryEvent
impl Unpin for BallCarryEvent
impl UnsafeUnpin for BallCarryEvent
impl UnwindSafe for BallCarryEvent
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