pub enum ConformanceMetric {
Real,
Imaginary,
Amplitude,
Phase,
MagnitudeSquared,
}Expand description
A quantity checked by the portable f32 differential contract.
Variants§
Real
Real Cartesian component.
Imaginary
Imaginary Cartesian component.
Amplitude
Complex amplitude.
Phase
Wrapped phase in radians, for cells above the amplitude floor.
MagnitudeSquared
Squared complex magnitude.
Trait Implementations§
Source§impl Clone for ConformanceMetric
impl Clone for ConformanceMetric
Source§fn clone(&self) -> ConformanceMetric
fn clone(&self) -> ConformanceMetric
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 ConformanceMetric
Source§impl Debug for ConformanceMetric
impl Debug for ConformanceMetric
impl Eq for ConformanceMetric
Source§impl PartialEq for ConformanceMetric
impl PartialEq for ConformanceMetric
impl StructuralPartialEq for ConformanceMetric
Auto Trait Implementations§
impl Freeze for ConformanceMetric
impl RefUnwindSafe for ConformanceMetric
impl Send for ConformanceMetric
impl Sync for ConformanceMetric
impl Unpin for ConformanceMetric
impl UnsafeUnpin for ConformanceMetric
impl UnwindSafe for ConformanceMetric
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