pub struct PerformanceBounds {
pub minimum: f64,
pub maximum: f64,
pub range: f64,
pub mean: f64,
}Expand description
Performance bounds analysis using SIMD operations
Fields§
§minimum: f64Minimum performance value
maximum: f64Maximum performance value
range: f64Performance range (max - min)
mean: f64Mean performance value
Trait Implementations§
Source§impl Clone for PerformanceBounds
impl Clone for PerformanceBounds
Source§fn clone(&self) -> PerformanceBounds
fn clone(&self) -> PerformanceBounds
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 PerformanceBounds
impl Debug for PerformanceBounds
Auto Trait Implementations§
impl Freeze for PerformanceBounds
impl RefUnwindSafe for PerformanceBounds
impl Send for PerformanceBounds
impl Sync for PerformanceBounds
impl Unpin for PerformanceBounds
impl UnwindSafe for PerformanceBounds
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more