pub struct ReliabilitySummary {
pub n_obs: usize,
pub n_params: usize,
pub dof: usize,
pub sum_redundancy: f64,
pub lambda0: f64,
pub max_mdb_m: Option<(String, f64)>,
pub min_redundancy: (String, f64),
pub n_uncheckable: usize,
}Expand description
Aggregate reliability diagnostics for a design.
Fields§
§n_obs: usizeNumber of observations in the design.
n_params: usizeNumber of estimated parameters in the design.
dof: usizeAlgebraic degrees of freedom, n_obs - n_params.
sum_redundancy: f64Sum of per-observation redundancy numbers.
lambda0: f64Noncentrality parameter used for MDB calculations.
max_mdb_m: Option<(String, f64)>Largest finite MDB in the design, if any observation is checkable.
min_redundancy: (String, f64)Smallest redundancy number and its observation identifier.
n_uncheckable: usizeCount of observations reported as uncheckable.
Trait Implementations§
Source§impl Clone for ReliabilitySummary
impl Clone for ReliabilitySummary
Source§fn clone(&self) -> ReliabilitySummary
fn clone(&self) -> ReliabilitySummary
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 ReliabilitySummary
impl Debug for ReliabilitySummary
Source§impl<'de> Deserialize<'de> for ReliabilitySummary
impl<'de> Deserialize<'de> for ReliabilitySummary
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 ReliabilitySummary
impl PartialEq for ReliabilitySummary
Source§fn eq(&self, other: &ReliabilitySummary) -> bool
fn eq(&self, other: &ReliabilitySummary) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ReliabilitySummary
impl Serialize for ReliabilitySummary
impl StructuralPartialEq for ReliabilitySummary
Auto Trait Implementations§
impl Freeze for ReliabilitySummary
impl RefUnwindSafe for ReliabilitySummary
impl Send for ReliabilitySummary
impl Sync for ReliabilitySummary
impl Unpin for ReliabilitySummary
impl UnsafeUnpin for ReliabilitySummary
impl UnwindSafe for ReliabilitySummary
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>,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
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.