pub struct TimeScaleAssessment {
pub scale_name: String,
pub time_s: f64,
pub coherence_preserved: f64,
pub is_feasible: bool,
pub coherence_quality: CoherenceQuality,
}Expand description
Assessment of coherence at specific time scale
Fields§
§scale_name: String§time_s: f64§coherence_preserved: f64§is_feasible: bool§coherence_quality: CoherenceQualityTrait Implementations§
Source§impl Clone for TimeScaleAssessment
impl Clone for TimeScaleAssessment
Source§fn clone(&self) -> TimeScaleAssessment
fn clone(&self) -> TimeScaleAssessment
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 TimeScaleAssessment
impl RefUnwindSafe for TimeScaleAssessment
impl Send for TimeScaleAssessment
impl Sync for TimeScaleAssessment
impl Unpin for TimeScaleAssessment
impl UnsafeUnpin for TimeScaleAssessment
impl UnwindSafe for TimeScaleAssessment
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