pub struct EnsembleStats {
pub num_chains: usize,
pub mn: f64,
pub mw: f64,
pub pdi: f64,
pub mn_min: f64,
pub mn_max: f64,
pub mn_median: f64,
pub mn_std_dev: f64,
}Expand description
Summary statistics for a polymer ensemble.
Fields§
§num_chains: usize§mn: f64§mw: f64§pdi: f64§mn_min: f64§mn_max: f64§mn_median: f64§mn_std_dev: f64Implementations§
Source§impl EnsembleStats
impl EnsembleStats
Sourcepub fn from_ensemble(ensemble: &PolymerEnsemble) -> Self
pub fn from_ensemble(ensemble: &PolymerEnsemble) -> Self
Computes statistics from an ensemble.
Trait Implementations§
Source§impl Clone for EnsembleStats
impl Clone for EnsembleStats
Source§fn clone(&self) -> EnsembleStats
fn clone(&self) -> EnsembleStats
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 EnsembleStats
impl Debug for EnsembleStats
Auto Trait Implementations§
impl Freeze for EnsembleStats
impl RefUnwindSafe for EnsembleStats
impl Send for EnsembleStats
impl Sync for EnsembleStats
impl Unpin for EnsembleStats
impl UnsafeUnpin for EnsembleStats
impl UnwindSafe for EnsembleStats
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