[−][src]Struct rand::distributions::Poisson
👎 Deprecated since 0.7.0:
moved to rand_distr crate
The Poisson distribution Poisson(lambda)
.
This distribution has a density function:
f(k) = lambda^k * exp(-lambda) / k!
for k >= 0
.
Implementations
impl Poisson
[src][−]
pub fn new(lambda: f64) -> Poisson
[src][−]
Construct a new Poisson
with the given shape parameter
lambda
. Panics if lambda <= 0
.
Trait Implementations
impl Clone for Poisson
[src][+]
impl Copy for Poisson
[src]
impl Debug for Poisson
[src][+]
impl Distribution<u64> for Poisson
[src][+]
Auto Trait Implementations
impl RefUnwindSafe for Poisson
impl Send for Poisson
impl Sync for Poisson
impl Unpin for Poisson
impl UnwindSafe for Poisson
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src][+]
V: MultiLane<T>,