pub struct BallTrajectoryDeviation {
pub position_deviation: f32,
pub velocity_deviation: f32,
pub seconds: f32,
}Fields§
§position_deviation: f32§velocity_deviation: f32§seconds: f32Trait Implementations§
Source§impl Clone for BallTrajectoryDeviation
impl Clone for BallTrajectoryDeviation
Source§fn clone(&self) -> BallTrajectoryDeviation
fn clone(&self) -> BallTrajectoryDeviation
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 moreimpl Copy for BallTrajectoryDeviation
Source§impl Debug for BallTrajectoryDeviation
impl Debug for BallTrajectoryDeviation
Source§impl PartialEq for BallTrajectoryDeviation
impl PartialEq for BallTrajectoryDeviation
Source§fn eq(&self, other: &BallTrajectoryDeviation) -> bool
fn eq(&self, other: &BallTrajectoryDeviation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BallTrajectoryDeviation
Auto Trait Implementations§
impl Freeze for BallTrajectoryDeviation
impl RefUnwindSafe for BallTrajectoryDeviation
impl Send for BallTrajectoryDeviation
impl Sync for BallTrajectoryDeviation
impl Unpin for BallTrajectoryDeviation
impl UnsafeUnpin for BallTrajectoryDeviation
impl UnwindSafe for BallTrajectoryDeviation
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