pub struct ScalingDataPoint {
pub distance: u32,
pub mean_decode_ns: f64,
pub std_decode_ns: f64,
pub num_samples: u32,
}Expand description
A single data point from empirical scaling measurements.
Fields§
§distance: u32§mean_decode_ns: f64§std_decode_ns: f64§num_samples: u32Trait Implementations§
Source§impl Clone for ScalingDataPoint
impl Clone for ScalingDataPoint
Source§fn clone(&self) -> ScalingDataPoint
fn clone(&self) -> ScalingDataPoint
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 moreAuto Trait Implementations§
impl Freeze for ScalingDataPoint
impl RefUnwindSafe for ScalingDataPoint
impl Send for ScalingDataPoint
impl Sync for ScalingDataPoint
impl Unpin for ScalingDataPoint
impl UnsafeUnpin for ScalingDataPoint
impl UnwindSafe for ScalingDataPoint
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