pub enum ANSHistogramStrategy {
Fast,
Approximate,
Precise,
}Expand description
Strategy for ANS histogram normalization.
Variants§
Fast
Only try a few shift values (fastest).
Approximate
Try every other shift value.
Precise
Try all shift values (best compression).
Trait Implementations§
Source§impl Clone for ANSHistogramStrategy
impl Clone for ANSHistogramStrategy
Source§fn clone(&self) -> ANSHistogramStrategy
fn clone(&self) -> ANSHistogramStrategy
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 ANSHistogramStrategy
impl Debug for ANSHistogramStrategy
Source§impl Default for ANSHistogramStrategy
impl Default for ANSHistogramStrategy
Source§fn default() -> ANSHistogramStrategy
fn default() -> ANSHistogramStrategy
Returns the “default value” for a type. Read more
Source§impl PartialEq for ANSHistogramStrategy
impl PartialEq for ANSHistogramStrategy
impl Copy for ANSHistogramStrategy
impl Eq for ANSHistogramStrategy
impl StructuralPartialEq for ANSHistogramStrategy
Auto Trait Implementations§
impl Freeze for ANSHistogramStrategy
impl RefUnwindSafe for ANSHistogramStrategy
impl Send for ANSHistogramStrategy
impl Sync for ANSHistogramStrategy
impl Unpin for ANSHistogramStrategy
impl UnwindSafe for ANSHistogramStrategy
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