pub struct Poisson {
pub mean: f64,
}Expand description
Poisson with mean lambda.
Fields§
§mean: f64Mean parameter λ. Must be > 0.
Trait Implementations§
Source§impl Distribution<u64> for Poisson
impl Distribution<u64> for Poisson
impl Copy for Poisson
Auto Trait Implementations§
impl Freeze for Poisson
impl RefUnwindSafe for Poisson
impl Send for Poisson
impl Sync for Poisson
impl Unpin for Poisson
impl UnsafeUnpin for Poisson
impl UnwindSafe for Poisson
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