pub struct QuantumNeuralHybridStats {
pub total_operations: usize,
pub quantum_coherence: f64,
pub neural_confidence: f64,
pub hybrid_synchronization: f64,
pub entanglement_strength: f64,
pub quantum_weight: f64,
pub neural_weight: f64,
pub average_performance: f64,
pub memory_utilization: f64,
pub decision_history_size: usize,
}
Expand description
Statistics for quantum-neural hybrid processor
Fields§
§total_operations: usize
§quantum_coherence: f64
§neural_confidence: f64
§hybrid_synchronization: f64
§entanglement_strength: f64
§quantum_weight: f64
§neural_weight: f64
§average_performance: f64
§memory_utilization: f64
§decision_history_size: usize
Trait Implementations§
Auto Trait Implementations§
impl Freeze for QuantumNeuralHybridStats
impl RefUnwindSafe for QuantumNeuralHybridStats
impl Send for QuantumNeuralHybridStats
impl Sync for QuantumNeuralHybridStats
impl Unpin for QuantumNeuralHybridStats
impl UnwindSafe for QuantumNeuralHybridStats
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more