pub struct BallTrajectoryError {
pub sample_count: usize,
pub max_position_error: f32,
pub rms_position_error: f32,
pub max_velocity_error: Option<f32>,
pub rms_velocity_error: Option<f32>,
}Fields§
§sample_count: usize§max_position_error: f32§rms_position_error: f32§max_velocity_error: Option<f32>§rms_velocity_error: Option<f32>Trait Implementations§
Source§impl Clone for BallTrajectoryError
impl Clone for BallTrajectoryError
Source§fn clone(&self) -> BallTrajectoryError
fn clone(&self) -> BallTrajectoryError
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 BallTrajectoryError
Source§impl Debug for BallTrajectoryError
impl Debug for BallTrajectoryError
Source§impl PartialEq for BallTrajectoryError
impl PartialEq for BallTrajectoryError
Source§fn eq(&self, other: &BallTrajectoryError) -> bool
fn eq(&self, other: &BallTrajectoryError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BallTrajectoryError
Auto Trait Implementations§
impl Freeze for BallTrajectoryError
impl RefUnwindSafe for BallTrajectoryError
impl Send for BallTrajectoryError
impl Sync for BallTrajectoryError
impl Unpin for BallTrajectoryError
impl UnsafeUnpin for BallTrajectoryError
impl UnwindSafe for BallTrajectoryError
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