Struct rand_distr::Pareto
source · pub struct Pareto<F>where
F: Float,
OpenClosed01: Distribution<F>,{ /* private fields */ }
Expand description
Samples floating-point numbers according to the Pareto distribution
Example
use rand::prelude::*;
use rand_distr::Pareto;
let val: f64 = thread_rng().sample(Pareto::new(1., 2.).unwrap());
println!("{}", val);
Implementations§
Trait Implementations§
source§impl<F> Clone for Pareto<F>where
F: Float + Clone,
OpenClosed01: Distribution<F>,
impl<F> Clone for Pareto<F>where F: Float + Clone, OpenClosed01: Distribution<F>,
source§impl<F> Debug for Pareto<F>where
F: Float + Debug,
OpenClosed01: Distribution<F>,
impl<F> Debug for Pareto<F>where F: Float + Debug, OpenClosed01: Distribution<F>,
source§impl<'de, F> Deserialize<'de> for Pareto<F>where
F: Float + Deserialize<'de>,
OpenClosed01: Distribution<F>,
impl<'de, F> Deserialize<'de> for Pareto<F>where F: Float + Deserialize<'de>, OpenClosed01: Distribution<F>,
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<F> Distribution<F> for Pareto<F>where
F: Float,
OpenClosed01: Distribution<F>,
impl<F> Distribution<F> for Pareto<F>where F: Float, OpenClosed01: Distribution<F>,
source§fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> F
fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> F
Generate a random value of
T
, using rng
as the source of randomness.source§impl<F> PartialEq<Pareto<F>> for Pareto<F>where
F: Float + PartialEq,
OpenClosed01: Distribution<F>,
impl<F> PartialEq<Pareto<F>> for Pareto<F>where F: Float + PartialEq, OpenClosed01: Distribution<F>,
source§impl<F> Serialize for Pareto<F>where
F: Float + Serialize,
OpenClosed01: Distribution<F>,
impl<F> Serialize for Pareto<F>where F: Float + Serialize, OpenClosed01: Distribution<F>,
impl<F> Copy for Pareto<F>where F: Float + Copy, OpenClosed01: Distribution<F>,
impl<F> StructuralPartialEq for Pareto<F>where F: Float, OpenClosed01: Distribution<F>,
Auto Trait Implementations§
impl<F> RefUnwindSafe for Pareto<F>where F: RefUnwindSafe,
impl<F> Send for Pareto<F>where F: Send,
impl<F> Sync for Pareto<F>where F: Sync,
impl<F> Unpin for Pareto<F>where F: Unpin,
impl<F> UnwindSafe for Pareto<F>where F: UnwindSafe,
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