pub enum UpscalingInfo {
Poisson {
sum_value_offset: usize,
count_value_offset: usize,
sampling_distance: u64,
},
PoissonNonSampleTypeCount {
sum_value_offset: usize,
count_value: u64,
sampling_distance: u64,
},
Proportional {
scale: f64,
},
}Variants§
Implementations§
Source§impl UpscalingInfo
impl UpscalingInfo
pub fn check_validity(&self, number_of_values: usize) -> Result<()>
Trait Implementations§
Source§impl Debug for UpscalingInfo
impl Debug for UpscalingInfo
Auto Trait Implementations§
impl Freeze for UpscalingInfo
impl RefUnwindSafe for UpscalingInfo
impl Send for UpscalingInfo
impl Sync for UpscalingInfo
impl Unpin for UpscalingInfo
impl UnwindSafe for UpscalingInfo
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