pub struct WindObservation {
pub range_m: f64,
pub miss_right_m: f64,
pub sigma_m: Option<f64>,
}Expand description
A single observed horizontal miss used to back-solve effective wind (MBA-1392).
SI throughout; front ends convert their display units once at the boundary (see
parse_wind_observation).
Fields§
§range_m: f64Range at which the group centre was measured, meters.
miss_right_m: f64Signed horizontal miss of the group centre, meters. POSITIVE = RIGHT of aim.
sigma_m: Option<f64>Optional one-standard-deviation measurement error of miss_right_m, meters.
Supply it on every observation or on none — see WindTruingRequest::validate.
Trait Implementations§
Source§impl Clone for WindObservation
impl Clone for WindObservation
Source§fn clone(&self) -> WindObservation
fn clone(&self) -> WindObservation
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 WindObservation
Source§impl Debug for WindObservation
impl Debug for WindObservation
Source§impl PartialEq for WindObservation
impl PartialEq for WindObservation
impl StructuralPartialEq for WindObservation
Auto Trait Implementations§
impl Freeze for WindObservation
impl RefUnwindSafe for WindObservation
impl Send for WindObservation
impl Sync for WindObservation
impl Unpin for WindObservation
impl UnsafeUnpin for WindObservation
impl UnwindSafe for WindObservation
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> Scalar for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.