pub struct SimulationTrace {
pub rounds: Vec<RoundSnapshot>,
pub converged: bool,
pub final_logical_error_rate: f64,
pub max_backlog: f64,
}Expand description
Full trace of a simulated control loop execution.
Fields§
§rounds: Vec<RoundSnapshot>§converged: bool§final_logical_error_rate: f64§max_backlog: f64Trait Implementations§
Source§impl Clone for SimulationTrace
impl Clone for SimulationTrace
Source§fn clone(&self) -> SimulationTrace
fn clone(&self) -> SimulationTrace
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 SimulationTrace
impl RefUnwindSafe for SimulationTrace
impl Send for SimulationTrace
impl Sync for SimulationTrace
impl Unpin for SimulationTrace
impl UnsafeUnpin for SimulationTrace
impl UnwindSafe for SimulationTrace
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