pub struct RecommendedSample {
pub input_value: f64,
pub expected_std: f64,
pub rank: usize,
}Expand description
A single recommended sampling location with its expected uncertainty.
Fields§
§input_value: f64Recommended input value to sample next.
expected_std: f64Posterior standard deviation at this location.
rank: usizeRank among all recommendations (1 = highest uncertainty).
Trait Implementations§
Source§impl Clone for RecommendedSample
impl Clone for RecommendedSample
Source§fn clone(&self) -> RecommendedSample
fn clone(&self) -> RecommendedSample
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 RecommendedSample
impl Debug for RecommendedSample
Source§impl PartialEq for RecommendedSample
impl PartialEq for RecommendedSample
Source§fn eq(&self, other: &RecommendedSample) -> bool
fn eq(&self, other: &RecommendedSample) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RecommendedSample
Auto Trait Implementations§
impl Freeze for RecommendedSample
impl RefUnwindSafe for RecommendedSample
impl Send for RecommendedSample
impl Sync for RecommendedSample
impl Unpin for RecommendedSample
impl UnsafeUnpin for RecommendedSample
impl UnwindSafe for RecommendedSample
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