pub struct BcFamilyFitV1 {
pub candidate_drag_model: String,
pub fitted_bc: f64,
pub relative_rms: f64,
pub integration_evaluations: usize,
}Expand description
One candidate family’s best single scalar BC over a source band schedule.
Fields§
§candidate_drag_model: String§fitted_bc: f64§relative_rms: f64Width-normalized RMS relative retardation error across the covered velocity range.
integration_evaluations: usizeTrait Implementations§
Source§impl Clone for BcFamilyFitV1
impl Clone for BcFamilyFitV1
Source§fn clone(&self) -> BcFamilyFitV1
fn clone(&self) -> BcFamilyFitV1
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 BcFamilyFitV1
impl Debug for BcFamilyFitV1
Source§impl<'de> Deserialize<'de> for BcFamilyFitV1
impl<'de> Deserialize<'de> for BcFamilyFitV1
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for BcFamilyFitV1
impl PartialEq for BcFamilyFitV1
Source§impl Serialize for BcFamilyFitV1
impl Serialize for BcFamilyFitV1
impl StructuralPartialEq for BcFamilyFitV1
Auto Trait Implementations§
impl Freeze for BcFamilyFitV1
impl RefUnwindSafe for BcFamilyFitV1
impl Send for BcFamilyFitV1
impl Sync for BcFamilyFitV1
impl Unpin for BcFamilyFitV1
impl UnsafeUnpin for BcFamilyFitV1
impl UnwindSafe for BcFamilyFitV1
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> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.