pub struct LeadSolution {
pub time_of_flight_s: f64,
pub lead_m: f64,
pub lead_mil: f64,
pub lead_moa: f64,
pub corrected_range_m: f64,
pub iterations: u32,
}Expand description
Full lead solution from calculate_lead.
Fields§
§time_of_flight_s: f64Time of flight to the corrected (intercept) range, seconds — wind-aware.
lead_m: f64Signed linear lead at the target, meters (positive = direction of travel).
lead_mil: f64Signed angular lead, milliradians.
lead_moa: f64Signed angular lead, MOA (ratio × 3438.0 — see module docs).
corrected_range_m: f64Intercept distance after radial-motion correction, meters.
iterations: u32Fixed-point iterations used (0 when the target has no radial component).
Trait Implementations§
Source§impl Clone for LeadSolution
impl Clone for LeadSolution
Source§fn clone(&self) -> LeadSolution
fn clone(&self) -> LeadSolution
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 LeadSolution
Source§impl Debug for LeadSolution
impl Debug for LeadSolution
Source§impl PartialEq for LeadSolution
impl PartialEq for LeadSolution
impl StructuralPartialEq for LeadSolution
Auto Trait Implementations§
impl Freeze for LeadSolution
impl RefUnwindSafe for LeadSolution
impl Send for LeadSolution
impl Sync for LeadSolution
impl Unpin for LeadSolution
impl UnsafeUnpin for LeadSolution
impl UnwindSafe for LeadSolution
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.