pub struct ContinuousBallControlSample<K> {
pub kind: K,
pub player_position: Vec3,
pub horizontal_gap: f32,
pub vertical_gap: f32,
pub speed: f32,
}Expand description
A single sampled frame of a continuous ball-control sequence.
Fields§
§kind: K§player_position: Vec3§horizontal_gap: f32§vertical_gap: f32§speed: f32Trait Implementations§
Source§impl<K: Clone> Clone for ContinuousBallControlSample<K>
impl<K: Clone> Clone for ContinuousBallControlSample<K>
impl<K: Copy> Copy for ContinuousBallControlSample<K>
Auto Trait Implementations§
impl<K> Freeze for ContinuousBallControlSample<K>where
K: Freeze,
impl<K> RefUnwindSafe for ContinuousBallControlSample<K>where
K: RefUnwindSafe,
impl<K> Send for ContinuousBallControlSample<K>where
K: Send,
impl<K> Sync for ContinuousBallControlSample<K>where
K: Sync,
impl<K> Unpin for ContinuousBallControlSample<K>where
K: Unpin,
impl<K> UnsafeUnpin for ContinuousBallControlSample<K>where
K: UnsafeUnpin,
impl<K> UnwindSafe for ContinuousBallControlSample<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