pub struct QuantumTimingProfiler {
pub profiler_id: u64,
pub execution_timings: HashMap<String, Vec<Duration>>,
pub gate_timings: HashMap<String, GateTimingStatistics>,
pub circuit_timings: HashMap<String, CircuitTimingStatistics>,
pub real_time_monitor: RealTimeTimingMonitor,
pub timing_predictions: TimingPredictionEngine,
}
Fields§
§profiler_id: u64
§execution_timings: HashMap<String, Vec<Duration>>
§gate_timings: HashMap<String, GateTimingStatistics>
§circuit_timings: HashMap<String, CircuitTimingStatistics>
§real_time_monitor: RealTimeTimingMonitor
§timing_predictions: TimingPredictionEngine
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for QuantumTimingProfiler
impl RefUnwindSafe for QuantumTimingProfiler
impl Send for QuantumTimingProfiler
impl Sync for QuantumTimingProfiler
impl Unpin for QuantumTimingProfiler
impl UnwindSafe for QuantumTimingProfiler
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