pub struct QuantumAnalysisReport {
pub total_validations: usize,
pub validity_rate: f64,
pub avg_energy_j: f64,
pub avg_energy_ev: f64,
pub margolus_levitin_margin: f64,
pub uncertainty_margin: f64,
pub coherence_preservation: f64,
pub entanglement_strength: f64,
pub attosecond_feasibility: AttosecondFeasibilityReport,
pub recommended_time_scale_s: f64,
}Expand description
Quantum analysis report for consciousness operations
Fields§
§total_validations: usize§validity_rate: f64§avg_energy_j: f64§avg_energy_ev: f64§margolus_levitin_margin: f64§uncertainty_margin: f64§coherence_preservation: f64§entanglement_strength: f64§attosecond_feasibility: AttosecondFeasibilityReport§recommended_time_scale_s: f64Trait Implementations§
Source§impl Clone for QuantumAnalysisReport
impl Clone for QuantumAnalysisReport
Source§fn clone(&self) -> QuantumAnalysisReport
fn clone(&self) -> QuantumAnalysisReport
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 QuantumAnalysisReport
impl RefUnwindSafe for QuantumAnalysisReport
impl Send for QuantumAnalysisReport
impl Sync for QuantumAnalysisReport
impl Unpin for QuantumAnalysisReport
impl UnsafeUnpin for QuantumAnalysisReport
impl UnwindSafe for QuantumAnalysisReport
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