pub struct ErrorCorrectionMetrics {
pub syndrome_accuracy: f32,
pub correction_success_rate: f32,
pub error_suppression_factor: f32,
pub overhead_factor: f32,
}Expand description
Error correction performance metrics
Fields§
§syndrome_accuracy: f32Syndrome detection accuracy
correction_success_rate: f32Correction success rate
error_suppression_factor: f32Logical error suppression factor
overhead_factor: f32Overhead factor
Trait Implementations§
Source§impl Clone for ErrorCorrectionMetrics
impl Clone for ErrorCorrectionMetrics
Source§fn clone(&self) -> ErrorCorrectionMetrics
fn clone(&self) -> ErrorCorrectionMetrics
Returns a duplicate of the value. Read more
1.0.0 · 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 ErrorCorrectionMetrics
impl RefUnwindSafe for ErrorCorrectionMetrics
impl Send for ErrorCorrectionMetrics
impl Sync for ErrorCorrectionMetrics
impl Unpin for ErrorCorrectionMetrics
impl UnsafeUnpin for ErrorCorrectionMetrics
impl UnwindSafe for ErrorCorrectionMetrics
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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