pub struct DifferentialTolerances {
pub component: ScalarTolerance,
pub amplitude: ScalarTolerance,
pub phase: ScalarTolerance,
pub magnitude_squared: ScalarTolerance,
pub phase_amplitude_floor: f64,
}Expand description
Published fixed tolerances for dense f32 interference conformance.
Fields§
§component: ScalarToleranceReal and imaginary component tolerance.
amplitude: ScalarToleranceComplex amplitude tolerance.
phase: ScalarToleranceWrapped phase tolerance in radians.
magnitude_squared: ScalarToleranceSquared-magnitude tolerance.
phase_amplitude_floor: f64Reference amplitude below which phase is undefined and not compared.
Trait Implementations§
Source§impl Clone for DifferentialTolerances
impl Clone for DifferentialTolerances
Source§fn clone(&self) -> DifferentialTolerances
fn clone(&self) -> DifferentialTolerances
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 DifferentialTolerances
Source§impl Debug for DifferentialTolerances
impl Debug for DifferentialTolerances
Source§impl Default for DifferentialTolerances
impl Default for DifferentialTolerances
Source§impl PartialEq for DifferentialTolerances
impl PartialEq for DifferentialTolerances
impl StructuralPartialEq for DifferentialTolerances
Auto Trait Implementations§
impl Freeze for DifferentialTolerances
impl RefUnwindSafe for DifferentialTolerances
impl Send for DifferentialTolerances
impl Sync for DifferentialTolerances
impl Unpin for DifferentialTolerances
impl UnsafeUnpin for DifferentialTolerances
impl UnwindSafe for DifferentialTolerances
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