pub struct GateReport {
pub candidate_backend: String,
pub baseline_backend: String,
pub min_samples_per_workload: usize,
pub workload_evaluations: Vec<WorkloadEvaluation>,
pub decision: GateDecision,
pub diagnostics: Vec<String>,
}Fields§
§candidate_backend: String§baseline_backend: String§min_samples_per_workload: usize§workload_evaluations: Vec<WorkloadEvaluation>§decision: GateDecision§diagnostics: Vec<String>Trait Implementations§
Source§impl Clone for GateReport
impl Clone for GateReport
Source§fn clone(&self) -> GateReport
fn clone(&self) -> GateReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GateReport
impl Debug for GateReport
Source§impl PartialEq for GateReport
impl PartialEq for GateReport
Source§impl Serialize for GateReport
impl Serialize for GateReport
impl StructuralPartialEq for GateReport
Auto Trait Implementations§
impl Freeze for GateReport
impl RefUnwindSafe for GateReport
impl Send for GateReport
impl Sync for GateReport
impl Unpin for GateReport
impl UnsafeUnpin for GateReport
impl UnwindSafe for GateReport
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