pub struct SourceSummary {
pub kind: String,
pub mean_1sigma: f64,
pub max_1sigma: f64,
pub skipped_voxels: u64,
}Expand description
Summary statistics for one source’s realized per-voxel contribution.
Fields§
§kind: StringSource kind tag (matches the corresponding UncertaintySource).
mean_1sigma: f64Mean of the per-voxel contribution over all grid voxels.
max_1sigma: f64Maximum per-voxel contribution.
skipped_voxels: u64Voxels where the source could contribute but was degenerate — e.g. a zero-concentration boron voxel — recorded, not hidden.
Trait Implementations§
Source§impl Clone for SourceSummary
impl Clone for SourceSummary
Source§fn clone(&self) -> SourceSummary
fn clone(&self) -> SourceSummary
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 SourceSummary
impl Debug for SourceSummary
Source§impl<'de> Deserialize<'de> for SourceSummary
impl<'de> Deserialize<'de> for SourceSummary
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 SourceSummary
impl PartialEq for SourceSummary
Source§impl Serialize for SourceSummary
impl Serialize for SourceSummary
impl StructuralPartialEq for SourceSummary
Auto Trait Implementations§
impl Freeze for SourceSummary
impl RefUnwindSafe for SourceSummary
impl Send for SourceSummary
impl Sync for SourceSummary
impl Unpin for SourceSummary
impl UnsafeUnpin for SourceSummary
impl UnwindSafe for SourceSummary
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