pub struct SourcePhaseEstimate {
pub max_abs_residual_phase_rad: f64,
pub max_predicted_geometry_error_rad: f64,
pub max_predicted_roundoff_error_rad: f64,
}Expand description
Predicted phase-domain accuracy for one source on one tile.
Fields§
§max_abs_residual_phase_rad: f64Largest absolute f32 residual phase submitted to sin or cos.
max_predicted_geometry_error_rad: f64Largest phase discrepancy caused by lowering local geometry to f32.
max_predicted_roundoff_error_rad: f64Largest predicted f32 wavenumber, multiply, and operation roundoff.
Trait Implementations§
Source§impl Clone for SourcePhaseEstimate
impl Clone for SourcePhaseEstimate
Source§fn clone(&self) -> SourcePhaseEstimate
fn clone(&self) -> SourcePhaseEstimate
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 SourcePhaseEstimate
Source§impl Debug for SourcePhaseEstimate
impl Debug for SourcePhaseEstimate
Source§impl Default for SourcePhaseEstimate
impl Default for SourcePhaseEstimate
Source§fn default() -> SourcePhaseEstimate
fn default() -> SourcePhaseEstimate
Returns the “default value” for a type. Read more
Source§impl PartialEq for SourcePhaseEstimate
impl PartialEq for SourcePhaseEstimate
impl StructuralPartialEq for SourcePhaseEstimate
Auto Trait Implementations§
impl Freeze for SourcePhaseEstimate
impl RefUnwindSafe for SourcePhaseEstimate
impl Send for SourcePhaseEstimate
impl Sync for SourcePhaseEstimate
impl Unpin for SourcePhaseEstimate
impl UnsafeUnpin for SourcePhaseEstimate
impl UnwindSafe for SourcePhaseEstimate
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