pub struct CompletedBallControlSequence<K> {Show 16 fields
pub player_id: PlayerId,
pub is_team_0: bool,
pub kind: K,
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,
pub start_position: Vec3,
pub end_position: Vec3,
pub touch_count: u32,
}Fields§
§player_id: PlayerId§is_team_0: bool§kind: K§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: f32§start_position: Vec3§end_position: Vec3§touch_count: u32Trait Implementations§
Source§impl<K: Clone> Clone for CompletedBallControlSequence<K>
impl<K: Clone> Clone for CompletedBallControlSequence<K>
Source§fn clone(&self) -> CompletedBallControlSequence<K>
fn clone(&self) -> CompletedBallControlSequence<K>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<K: Debug> Debug for CompletedBallControlSequence<K>
impl<K: Debug> Debug for CompletedBallControlSequence<K>
Source§impl<K: PartialEq> PartialEq for CompletedBallControlSequence<K>
impl<K: PartialEq> PartialEq for CompletedBallControlSequence<K>
Source§fn eq(&self, other: &CompletedBallControlSequence<K>) -> bool
fn eq(&self, other: &CompletedBallControlSequence<K>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<K> StructuralPartialEq for CompletedBallControlSequence<K>
Auto Trait Implementations§
impl<K> Freeze for CompletedBallControlSequence<K>where
K: Freeze,
impl<K> RefUnwindSafe for CompletedBallControlSequence<K>where
K: RefUnwindSafe,
impl<K> Send for CompletedBallControlSequence<K>where
K: Send,
impl<K> Sync for CompletedBallControlSequence<K>where
K: Sync,
impl<K> Unpin for CompletedBallControlSequence<K>where
K: Unpin,
impl<K> UnsafeUnpin for CompletedBallControlSequence<K>where
K: UnsafeUnpin,
impl<K> UnwindSafe for CompletedBallControlSequence<K>where
K: 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