pub struct GeometricError {
pub rms_position: f64,
pub max_position: f64,
pub rms_normal_radians: f64,
pub max_normal_radians: f64,
}Expand description
Residual-only snapshot used to compare a supplied/initialized carrier with the final refined carrier without duplicating support bookkeeping.
Fields§
§rms_position: f64Root-mean-square positional residual.
max_position: f64Maximum absolute positional residual.
rms_normal_radians: f64Root-mean-square normal-angle residual, in radians.
max_normal_radians: f64Maximum normal-angle residual, in radians.
Trait Implementations§
Source§impl Clone for GeometricError
impl Clone for GeometricError
Source§fn clone(&self) -> GeometricError
fn clone(&self) -> GeometricError
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 GeometricError
Source§impl Debug for GeometricError
impl Debug for GeometricError
Source§impl Default for GeometricError
impl Default for GeometricError
Source§fn default() -> GeometricError
fn default() -> GeometricError
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GeometricError
impl<'de> Deserialize<'de> for GeometricError
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&FitMetrics> for GeometricError
impl From<&FitMetrics> for GeometricError
Source§fn from(metrics: &FitMetrics) -> Self
fn from(metrics: &FitMetrics) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GeometricError
impl PartialEq for GeometricError
Source§impl Serialize for GeometricError
impl Serialize for GeometricError
impl StructuralPartialEq for GeometricError
Auto Trait Implementations§
impl Freeze for GeometricError
impl RefUnwindSafe for GeometricError
impl Send for GeometricError
impl Sync for GeometricError
impl Unpin for GeometricError
impl UnsafeUnpin for GeometricError
impl UnwindSafe for GeometricError
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