pub struct SimulationResult {
pub state: QuantumState,
pub measurements: Vec<MeasurementOutcome>,
pub metrics: SimulationMetrics,
}Expand description
Result of a single simulation run (state + measurements).
Fields§
§state: QuantumState§measurements: Vec<MeasurementOutcome>§metrics: SimulationMetricsAuto Trait Implementations§
impl Freeze for SimulationResult
impl RefUnwindSafe for SimulationResult
impl Send for SimulationResult
impl Sync for SimulationResult
impl Unpin for SimulationResult
impl UnsafeUnpin for SimulationResult
impl UnwindSafe for SimulationResult
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