pub struct StructuralRecoveryStatistics {
pub element_count: u64,
pub minimum_error: f64,
pub maximum_error: f64,
pub mean_error: f64,
pub root_mean_square_error: f64,
}Fields§
§element_count: u64§minimum_error: f64§maximum_error: f64§mean_error: f64§root_mean_square_error: f64Trait Implementations§
Source§impl Clone for StructuralRecoveryStatistics
impl Clone for StructuralRecoveryStatistics
Source§fn clone(&self) -> StructuralRecoveryStatistics
fn clone(&self) -> StructuralRecoveryStatistics
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 moreimpl Copy for StructuralRecoveryStatistics
Source§impl Debug for StructuralRecoveryStatistics
impl Debug for StructuralRecoveryStatistics
Source§impl<'de> Deserialize<'de> for StructuralRecoveryStatistics
impl<'de> Deserialize<'de> for StructuralRecoveryStatistics
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 StructuralPartialEq for StructuralRecoveryStatistics
Auto Trait Implementations§
impl Freeze for StructuralRecoveryStatistics
impl RefUnwindSafe for StructuralRecoveryStatistics
impl Send for StructuralRecoveryStatistics
impl Sync for StructuralRecoveryStatistics
impl Unpin for StructuralRecoveryStatistics
impl UnsafeUnpin for StructuralRecoveryStatistics
impl UnwindSafe for StructuralRecoveryStatistics
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