pub struct SweepPoint {
pub budget: f64,
pub accepted: bool,
}Expand description
One point in a threshold sweep: the budget at which this point applies, and whether the target is accepted at that budget.
Fields§
§budget: f64The budget value at which this point was evaluated.
accepted: boolWhether the target was accepted at that budget.
Trait Implementations§
Source§impl Clone for SweepPoint
impl Clone for SweepPoint
Source§fn clone(&self) -> SweepPoint
fn clone(&self) -> SweepPoint
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 moreSource§impl Debug for SweepPoint
impl Debug for SweepPoint
Source§impl PartialEq for SweepPoint
impl PartialEq for SweepPoint
impl StructuralPartialEq for SweepPoint
Auto Trait Implementations§
impl Freeze for SweepPoint
impl RefUnwindSafe for SweepPoint
impl Send for SweepPoint
impl Sync for SweepPoint
impl Unpin for SweepPoint
impl UnsafeUnpin for SweepPoint
impl UnwindSafe for SweepPoint
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