pub struct UncertaintyAnalysis {
pub temperature_k: f64,
pub thermal_energy_j: f64,
pub thermal_energy_ev: f64,
pub hbar: f64,
pub minimum_product: f64,
pub constraints: Vec<UncertaintyConstraint>,
pub recommended_scale: String,
}Expand description
Analysis of uncertainty constraints across time scales
Fields§
§temperature_k: f64§thermal_energy_j: f64§thermal_energy_ev: f64§hbar: f64§minimum_product: f64§constraints: Vec<UncertaintyConstraint>§recommended_scale: StringTrait Implementations§
Source§impl Clone for UncertaintyAnalysis
impl Clone for UncertaintyAnalysis
Source§fn clone(&self) -> UncertaintyAnalysis
fn clone(&self) -> UncertaintyAnalysis
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 moreAuto Trait Implementations§
impl Freeze for UncertaintyAnalysis
impl RefUnwindSafe for UncertaintyAnalysis
impl Send for UncertaintyAnalysis
impl Sync for UncertaintyAnalysis
impl Unpin for UncertaintyAnalysis
impl UnsafeUnpin for UncertaintyAnalysis
impl UnwindSafe for UncertaintyAnalysis
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