#[repr(C)]pub struct FFITrajectoryResult {Show 15 fields
pub max_range: c_double,
pub max_height: c_double,
pub time_of_flight: c_double,
pub impact_velocity: c_double,
pub impact_energy: c_double,
pub points: *mut FFITrajectoryPoint,
pub point_count: c_int,
pub sampled_points: *mut FFITrajectorySample,
pub sampled_point_count: c_int,
pub min_pitch_damping: c_double,
pub transonic_mach: c_double,
pub final_pitch_angle: c_double,
pub final_yaw_angle: c_double,
pub max_yaw_angle: c_double,
pub max_precession_angle: c_double,
}Fields§
§max_range: c_double§max_height: c_double§time_of_flight: c_double§impact_velocity: c_double§impact_energy: c_double§points: *mut FFITrajectoryPoint§point_count: c_int§sampled_points: *mut FFITrajectorySample§sampled_point_count: c_int§min_pitch_damping: c_double§transonic_mach: c_double§final_pitch_angle: c_double§final_yaw_angle: c_double§max_yaw_angle: c_double§max_precession_angle: c_doubleAuto Trait Implementations§
impl Freeze for FFITrajectoryResult
impl RefUnwindSafe for FFITrajectoryResult
impl !Send for FFITrajectoryResult
impl !Sync for FFITrajectoryResult
impl Unpin for FFITrajectoryResult
impl UnwindSafe for FFITrajectoryResult
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<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.