pub struct SweepResult {
pub parameter_name: String,
pub data_points: Vec<DataPoint>,
pub optimal: Option<DataPoint>,
pub config: SweepConfig,
}Expand description
Result of a sweep.
Fields§
§parameter_name: StringParameter name
data_points: Vec<DataPoint>Data points
optimal: Option<DataPoint>Optimal configuration
config: SweepConfigOriginal configuration
Implementations§
Trait Implementations§
Source§impl Clone for SweepResult
impl Clone for SweepResult
Source§fn clone(&self) -> SweepResult
fn clone(&self) -> SweepResult
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 SweepResult
impl RefUnwindSafe for SweepResult
impl Send for SweepResult
impl Sync for SweepResult
impl Unpin for SweepResult
impl UnsafeUnpin for SweepResult
impl UnwindSafe for SweepResult
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