pub struct TuneReport {
pub operation: String,
pub environment: String,
pub workload: String,
pub execution_context: String,
pub winner: String,
pub elapsed: Duration,
pub budget_exhausted: bool,
pub candidates: Vec<CandidateReport>,
}Fields§
§operation: String§environment: String§workload: String§execution_context: String§winner: String§elapsed: Duration§budget_exhausted: bool§candidates: Vec<CandidateReport>Trait Implementations§
Source§impl Clone for TuneReport
impl Clone for TuneReport
Source§fn clone(&self) -> TuneReport
fn clone(&self) -> TuneReport
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 moreAuto Trait Implementations§
impl Freeze for TuneReport
impl RefUnwindSafe for TuneReport
impl Send for TuneReport
impl Sync for TuneReport
impl Unpin for TuneReport
impl UnsafeUnpin for TuneReport
impl UnwindSafe for TuneReport
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