pub struct DsfPoint {
pub mach: f64,
pub dsf: f64,
}Expand description
One observed drop-scale-factor keyed to the Mach number it was recorded at.
mach must satisfy 0 < mach < 1.2; dsf must be finite and satisfy
0.5 < dsf < 2.0. Both bounds are enforced by DsfTable::from_points and
DsfTable::upsert — this struct itself carries no invariant beyond the field types
(serde needs to deserialize arbitrary saved-profile content before it can be
validated).
Fields§
§mach: f64§dsf: f64Trait Implementations§
Source§impl<'de> Deserialize<'de> for DsfPoint
impl<'de> Deserialize<'de> for DsfPoint
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
impl Copy for DsfPoint
impl StructuralPartialEq for DsfPoint
Auto Trait Implementations§
impl Freeze for DsfPoint
impl RefUnwindSafe for DsfPoint
impl Send for DsfPoint
impl Sync for DsfPoint
impl Unpin for DsfPoint
impl UnwindSafe for DsfPoint
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<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§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 more§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).§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.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.