pub struct UncertaintyComponent {
pub name: &'static str,
pub ty: GumType,
pub standard_uncertainty: f64,
}Expand description
A single line in the uncertainty budget.
Fields§
§name: &'static strStable identifier (e.g. "calibration_sample_variance").
ty: GumTypeGUM Type — A for statistical, B for non-statistical (datasheet, heuristic).
standard_uncertainty: f64Standard uncertainty u_i expressed in the same units as the
residual norm (typically newton-metres or newtons, depending
on the dataset).
Trait Implementations§
Source§impl Clone for UncertaintyComponent
impl Clone for UncertaintyComponent
Source§fn clone(&self) -> UncertaintyComponent
fn clone(&self) -> UncertaintyComponent
Returns a duplicate of the value. Read more
1.0.0 · 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 UncertaintyComponent
impl Debug for UncertaintyComponent
Source§impl PartialEq for UncertaintyComponent
impl PartialEq for UncertaintyComponent
impl Copy for UncertaintyComponent
impl StructuralPartialEq for UncertaintyComponent
Auto Trait Implementations§
impl Freeze for UncertaintyComponent
impl RefUnwindSafe for UncertaintyComponent
impl Send for UncertaintyComponent
impl Sync for UncertaintyComponent
impl Unpin for UncertaintyComponent
impl UnsafeUnpin for UncertaintyComponent
impl UnwindSafe for UncertaintyComponent
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