pub struct BoundedQualityMetrics<const MIN_ALIGNMENT: u32, const MAX_ERROR: u32> { /* private fields */ }Expand description
Enhanced quality metrics with compile-time bounds BoundedQualityMetrics
Implementations§
Source§impl<const MIN_ALIGNMENT: u32, const MAX_ERROR: u32> BoundedQualityMetrics<MIN_ALIGNMENT, MAX_ERROR>
impl<const MIN_ALIGNMENT: u32, const MAX_ERROR: u32> BoundedQualityMetrics<MIN_ALIGNMENT, MAX_ERROR>
Trait Implementations§
Source§impl<const MIN_ALIGNMENT: u32, const MAX_ERROR: u32> Clone for BoundedQualityMetrics<MIN_ALIGNMENT, MAX_ERROR>
impl<const MIN_ALIGNMENT: u32, const MAX_ERROR: u32> Clone for BoundedQualityMetrics<MIN_ALIGNMENT, MAX_ERROR>
Source§fn clone(&self) -> BoundedQualityMetrics<MIN_ALIGNMENT, MAX_ERROR>
fn clone(&self) -> BoundedQualityMetrics<MIN_ALIGNMENT, MAX_ERROR>
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<const MIN_ALIGNMENT: u32, const MAX_ERROR: u32> Debug for BoundedQualityMetrics<MIN_ALIGNMENT, MAX_ERROR>
impl<const MIN_ALIGNMENT: u32, const MAX_ERROR: u32> Debug for BoundedQualityMetrics<MIN_ALIGNMENT, MAX_ERROR>
impl<const MIN_ALIGNMENT: u32, const MAX_ERROR: u32> Copy for BoundedQualityMetrics<MIN_ALIGNMENT, MAX_ERROR>
Auto Trait Implementations§
impl<const MIN_ALIGNMENT: u32, const MAX_ERROR: u32> Freeze for BoundedQualityMetrics<MIN_ALIGNMENT, MAX_ERROR>
impl<const MIN_ALIGNMENT: u32, const MAX_ERROR: u32> RefUnwindSafe for BoundedQualityMetrics<MIN_ALIGNMENT, MAX_ERROR>
impl<const MIN_ALIGNMENT: u32, const MAX_ERROR: u32> Send for BoundedQualityMetrics<MIN_ALIGNMENT, MAX_ERROR>
impl<const MIN_ALIGNMENT: u32, const MAX_ERROR: u32> Sync for BoundedQualityMetrics<MIN_ALIGNMENT, MAX_ERROR>
impl<const MIN_ALIGNMENT: u32, const MAX_ERROR: u32> Unpin for BoundedQualityMetrics<MIN_ALIGNMENT, MAX_ERROR>
impl<const MIN_ALIGNMENT: u32, const MAX_ERROR: u32> UnwindSafe for BoundedQualityMetrics<MIN_ALIGNMENT, MAX_ERROR>
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