pub enum ExternalTotal {
Dedicated {
values: Vec<f64>,
absolute_standard_uncertainty: Option<Vec<f64>>,
},
ComponentSum,
}Expand description
How the bundle’s physical_total is determined on import.
Variants§
Dedicated
The producer tallied the physical total directly. values is
required; absolute_standard_uncertainty is optional and, when
present, is recorded with dedicated_estimator method provenance.
ComponentSum
Derive the total as the sum of the four components. The importer
never claims a total uncertainty here: component covariance is the
producer’s domain knowledge, so unavailable is the honest record.
Trait Implementations§
Source§impl Clone for ExternalTotal
impl Clone for ExternalTotal
Source§fn clone(&self) -> ExternalTotal
fn clone(&self) -> ExternalTotal
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 ExternalTotal
impl Debug for ExternalTotal
Source§impl<'de> Deserialize<'de> for ExternalTotal
impl<'de> Deserialize<'de> for ExternalTotal
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 ExternalTotal
impl PartialEq for ExternalTotal
Source§impl Serialize for ExternalTotal
impl Serialize for ExternalTotal
impl StructuralPartialEq for ExternalTotal
Auto Trait Implementations§
impl Freeze for ExternalTotal
impl RefUnwindSafe for ExternalTotal
impl Send for ExternalTotal
impl Sync for ExternalTotal
impl Unpin for ExternalTotal
impl UnsafeUnpin for ExternalTotal
impl UnwindSafe for ExternalTotal
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