pub struct PforEncoder {
pub percentile: f64,
}Expand description
Patched FOR encoder.
Like FOR but handles outliers separately. Efficient when most values fit in small range with few exceptions.
Fields§
§percentile: f64Percentile threshold for determining bit width (0.0-1.0).
Trait Implementations§
Source§impl Default for PforEncoder
impl Default for PforEncoder
Auto Trait Implementations§
impl Freeze for PforEncoder
impl RefUnwindSafe for PforEncoder
impl Send for PforEncoder
impl Sync for PforEncoder
impl Unpin for PforEncoder
impl UnsafeUnpin for PforEncoder
impl UnwindSafe for PforEncoder
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