Skip to main content

A7pProfile

Struct A7pProfile 

Source
pub struct A7pProfile {
Show 29 fields pub profile_name: String, pub cartridge_name: String, pub bullet_name: String, pub short_name_top: String, pub short_name_bot: String, pub user_note: String, pub caliber: String, pub device_uuid: String, pub zero_x_raw: i32, pub zero_y_raw: i32, pub w_pitch_raw: i32, pub sight_height_mm: f64, pub twist_in_per_turn: f64, pub twist_right: bool, pub muzzle_velocity_mps: f64, pub zero_temperature_c: f64, pub temp_coeff_pct_per_15c: f64, pub powder_temperature_c: f64, pub air_temperature_c: f64, pub air_pressure_hpa: f64, pub air_humidity_pct: f64, pub bullet_diameter_in: f64, pub bullet_weight_gr: f64, pub bullet_length_in: f64, pub bc_type: A7pBcType, pub coef_rows_raw: Vec<(i32, i32)>, pub distances_m: Vec<f64>, pub zero_distance_m: Option<f64>, pub switches_count: usize,
}

Fields§

§profile_name: String§cartridge_name: String§bullet_name: String§short_name_top: String§short_name_bot: String§user_note: String§caliber: String§device_uuid: String§zero_x_raw: i32§zero_y_raw: i32§w_pitch_raw: i32§sight_height_mm: f64§twist_in_per_turn: f64§twist_right: bool§muzzle_velocity_mps: f64§zero_temperature_c: f64§temp_coeff_pct_per_15c: f64§powder_temperature_c: f64§air_temperature_c: f64§air_pressure_hpa: f64§air_humidity_pct: f64§bullet_diameter_in: f64§bullet_weight_gr: f64§bullet_length_in: f64§bc_type: A7pBcType§coef_rows_raw: Vec<(i32, i32)>

Raw (bc_cd, mv) integer pairs; scaling depends on bc_type (see bc_rows() / custom_rows()).

§distances_m: Vec<f64>§zero_distance_m: Option<f64>§switches_count: usize

Implementations§

Source§

impl A7pProfile

Source

pub fn bc_rows(&self) -> Vec<(f64, f64)>

G1/G7 interpretation: (BC, velocity m/s), file order preserved.

Source

pub fn custom_rows(&self) -> Vec<(f64, f64)>

CUSTOM interpretation: (Cd, Mach), file order preserved. Only meaningful when bc_type == A7pBcType::Custom — for G1/G7 files the same raw rows mean (BC, velocity m/s), see bc_rows().

Trait Implementations§

Source§

impl Clone for A7pProfile

Source§

fn clone(&self) -> A7pProfile

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for A7pProfile

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for A7pProfile

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

Source§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
Source§

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

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
Source§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.