pub struct QuantumProcessorStats {
pub operations_count: usize,
pub coherence_time: f64,
pub decoherence_rate: f64,
pub entanglement_strength: f64,
pub cache_efficiency: f64,
pub error_correction_enabled: bool,
pub active_error_syndromes: usize,
pub average_logical_fidelity: f64,
pub evolution_time: f64,
}
Expand description
Statistics for quantum sparse matrix processor
Fields§
§operations_count: usize
§coherence_time: f64
§decoherence_rate: f64
§entanglement_strength: f64
§cache_efficiency: f64
§error_correction_enabled: bool
§active_error_syndromes: usize
§average_logical_fidelity: f64
§evolution_time: f64
Trait Implementations§
Auto Trait Implementations§
impl Freeze for QuantumProcessorStats
impl RefUnwindSafe for QuantumProcessorStats
impl Send for QuantumProcessorStats
impl Sync for QuantumProcessorStats
impl Unpin for QuantumProcessorStats
impl UnwindSafe for QuantumProcessorStats
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