pub struct BFactorStats {
pub mean: f64,
pub std_dev: f64,
pub min: f64,
pub max: f64,
pub median: f64,
}Expand description
Descriptive statistics for B-factor values.
Fields§
§mean: f64Arithmetic mean of B-factors.
std_dev: f64Population standard deviation.
min: f64Minimum B-factor.
max: f64Maximum B-factor.
median: f64Median B-factor.
Trait Implementations§
Source§impl Clone for BFactorStats
impl Clone for BFactorStats
Source§fn clone(&self) -> BFactorStats
fn clone(&self) -> BFactorStats
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 BFactorStats
impl Debug for BFactorStats
Source§impl PartialEq for BFactorStats
impl PartialEq for BFactorStats
impl StructuralPartialEq for BFactorStats
Auto Trait Implementations§
impl Freeze for BFactorStats
impl RefUnwindSafe for BFactorStats
impl Send for BFactorStats
impl Sync for BFactorStats
impl Unpin for BFactorStats
impl UnsafeUnpin for BFactorStats
impl UnwindSafe for BFactorStats
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