pub struct LeadComponents {
pub lead_m: f64,
pub lead_mil: f64,
pub lead_moa: f64,
}Expand description
Pure angular/linear lead from an already-known time of flight (no solve).
Fields§
§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 (CLI dial convention: ratio × 3438.0).
Trait Implementations§
Source§impl Clone for LeadComponents
impl Clone for LeadComponents
Source§fn clone(&self) -> LeadComponents
fn clone(&self) -> LeadComponents
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 LeadComponents
Source§impl Debug for LeadComponents
impl Debug for LeadComponents
Source§impl PartialEq for LeadComponents
impl PartialEq for LeadComponents
impl StructuralPartialEq for LeadComponents
Auto Trait Implementations§
impl Freeze for LeadComponents
impl RefUnwindSafe for LeadComponents
impl Send for LeadComponents
impl Sync for LeadComponents
impl Unpin for LeadComponents
impl UnsafeUnpin for LeadComponents
impl UnwindSafe for LeadComponents
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.