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: usizeImplementations§
Source§impl A7pProfile
impl A7pProfile
Sourcepub fn bc_rows(&self) -> Vec<(f64, f64)>
pub fn bc_rows(&self) -> Vec<(f64, f64)>
G1/G7 interpretation: (BC, velocity m/s), file order preserved.
Sourcepub fn custom_rows(&self) -> Vec<(f64, f64)>
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
impl Clone for A7pProfile
Source§fn clone(&self) -> A7pProfile
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)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for A7pProfile
impl Debug for A7pProfile
Auto Trait Implementations§
impl Freeze for A7pProfile
impl RefUnwindSafe for A7pProfile
impl Send for A7pProfile
impl Sync for A7pProfile
impl Unpin for A7pProfile
impl UnsafeUnpin for A7pProfile
impl UnwindSafe for A7pProfile
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.