pub struct QuantumAdvantageAnalyzer {
pub benchmarks: Vec<QuantumBenchmark>,
pub classical_baselines: Vec<ClassicalBaseline>,
pub metrics: AdvantageMetrics,
pub results: Option<AdvantageAnalysisResult>,
}Expand description
Quantum advantage analysis system
Fields§
§benchmarks: Vec<QuantumBenchmark>Benchmarking suite
classical_baselines: Vec<ClassicalBaseline>Classical baselines
metrics: AdvantageMetricsAdvantage metrics
results: Option<AdvantageAnalysisResult>Analysis results
Trait Implementations§
Auto Trait Implementations§
impl Freeze for QuantumAdvantageAnalyzer
impl RefUnwindSafe for QuantumAdvantageAnalyzer
impl Send for QuantumAdvantageAnalyzer
impl Sync for QuantumAdvantageAnalyzer
impl Unpin for QuantumAdvantageAnalyzer
impl UnwindSafe for QuantumAdvantageAnalyzer
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