pub struct WezRow {
pub range_m: f64,
pub p_hit: f64,
pub dominant_error_source: Option<WezErrorBucket>,
pub wind_call_share: f64,
pub mv_sd_share: f64,
pub other_share: f64,
pub attribution_unavailable: bool,
}Expand description
One range step of a WEZ sweep.
Fields§
§range_m: f64§p_hit: f64§dominant_error_source: Option<WezErrorBucket>The undispersed baseline trajectory did not reach this range, so *_share and
dominant_error_source above are not meaningful (left at their zero/None default).
p_hit is unaffected – it comes from the fully-dispersed Monte Carlo run directly.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WezRow
impl RefUnwindSafe for WezRow
impl Send for WezRow
impl Sync for WezRow
impl Unpin for WezRow
impl UnsafeUnpin for WezRow
impl UnwindSafe for WezRow
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,
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.