pub struct HyperGeometric {
pub big_n: usize,
pub big_t: usize,
pub n: usize,
pub x: usize,
}Expand description
Tracks parameters mapping states across Hypergeometric sample space distributions where sampling occurs without replacement.
Fields§
§big_n: usizeTotal items present inside the master population base ($N$).
big_t: usizeTotal characteristic target elements tracked inside the population ($T$).
n: usizeNumber of elements drawn in the sample slice ($n$).
x: usizeTracked number of matching characteristics observed inside the sample ($x$).
Implementations§
Auto Trait Implementations§
impl Freeze for HyperGeometric
impl RefUnwindSafe for HyperGeometric
impl Send for HyperGeometric
impl Sync for HyperGeometric
impl Unpin for HyperGeometric
impl UnwindSafe for HyperGeometric
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